I have a dbf as below and I need to select some records.
Now I want to select only records which has only 1 single record. For example
And I want to do this with using an IF-ENDIF.
So how can I do this?
Thank you
Code:
TABLE1
Stylecd colorname style delqty
123 black R8H/1 12
123 red R8H/1 70
645 blue ZS32 400
8354 black HGD5 523
Now I want to select only records which has only 1 single record. For example
Code:
Stylecd colorname style delqty
645 blue ZS32 400
8354 black HGD5 523
And I want to do this with using an IF-ENDIF.
Code:
IF &&select the records which has only 1 single record
ENDIF
Thank you