Question:
Have a table Table1 with the following rows:
PK Fld2 Fld3 Fld4
---- ---- ---- ----
1 58 C D
2 12 K J
3 58 C D
I want to select distinct Fld2, Fld3, and Fld4 in addition to any value of PK, i.e I want my select query to return:
1 , 58 , C, D
2 , 12 , K, J
What is the simplest way of doing that .
thanks