how to Distinct two colums but select other colums
Hi all,
I have a table,
Station------Lat------Lon
Sta1_________10.1_____10.2
Sta__________10.1_____10.2
Sta2_________15.5_____15.5
I am trying to distinct the table with Lat and Lon values. And select ONE OF the Station values.
So final query result must be;
Station------Lat------Lon
Sta1_________10.1_____10.2
Sta2_________15.5_____15.5
Could you please help me?
|