I have a SQL query I am running. What I was wanting to know is that is there a way of selecting the rows in a table where the value in on one of those columns is distinct? When
All you have to do is select just the columns you want the first one and do a select Distinct
Select Distinct column1 -- where your criteria...