Is it possible to select distinct rows from 1 table
table data looks like:
400000,george,washington
400000,george,washington
400001,thomas,jefferson
i have 5000 rows - but only want to select distinct rows by the first column - so from the data above i would only select:
400000,george,washington
400001,thomas,jefferson
Thanks.
table data looks like:
400000,george,washington
400000,george,washington
400001,thomas,jefferson
i have 5000 rows - but only want to select distinct rows by the first column - so from the data above i would only select:
400000,george,washington
400001,thomas,jefferson
Thanks.