콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
2 답글
4384 화면

Friends,

I have 2 fields named "seq_name" & "seq_no"

I want to join it into a "Sequence" field...

Is it possible..

Example:

   If "seq_name"=PPG and "seq_no"=667

i want to show as "Sequence"=PPG 667

Thanks...

아바타
취소
베스트 답변

Try this,

str(seq_name or '') + " " + str(seq_no or '')

Hop helps

아바타
취소
베스트 답변

It just easy dude....

sequence = str(seq_name) + " " + str(seq_no)

아바타
취소