azzazzello
Technical User
Suppose I have a table consisting of 10 fields.
f1,f2,...,f10
f1 is not the primary key, and hence has repetitions
suppose I have
the following set of data
I need to return any ENTIRE row for a distinct value of f1.
So ideally my result would be
AAA,1,2,...
BBB,3,7,...
CCC,2,3,...
thous is can be ANY of the repeating rows, as long as there is just ONE in the resultant set
f1,f2,...,f10
f1 is not the primary key, and hence has repetitions
suppose I have
the following set of data
Code:
AAA,1,2,...
BBB,3,4,....
AAA,5,9,...
CCC,4,1,...
BBB,3,7,...
I need to return any ENTIRE row for a distinct value of f1.
So ideally my result would be
AAA,1,2,...
BBB,3,7,...
CCC,2,3,...
thous is can be ANY of the repeating rows, as long as there is just ONE in the resultant set