I am a bit confused about the uses of these words. I have a table with he following columns: SITE, LAT, LONG, NAME, ......
I want results with unique (or is it disti
AFAIR both mean the same. To get unique vel distinct LAT & LONG from your table just do:
SELECT DISTINCT LAT, LONG FROM table;