Hi,
I have a table named "Eng_jobs.dbf" in there i have these records, only need to display the "job_no field value" only one record from the multiple values.
so actually what i need to obtain is
11735
11746
103614
109942
i have been using "select job_no from eng_jobs distinct into cursor result order by 1"
but still don't get as i want to accomplish above
Can anyone suggest me please ?
Thanks
I have a table named "Eng_jobs.dbf" in there i have these records, only need to display the "job_no field value" only one record from the multiple values.
Code:
Fields Job_no c(6) Part_no c(12) Part_desc c(28)
values 11735 114376-1311 INSULATOR - DIE HEAD BRACKET
11746 117462-515 abcdefg
103614 100283-1475 CLAMP COLLAR
103614 100283-472 BRACKET
103614 111525-258 GAUGE BLOCK
109942 100802-110 IDLER BRACKET-ADJ
109942 100802-1112 SPROCKET
so actually what i need to obtain is
11735
11746
103614
109942
i have been using "select job_no from eng_jobs distinct into cursor result order by 1"
but still don't get as i want to accomplish above
Can anyone suggest me please ?
Thanks