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
One option is to use a GROUP BY on Col A. Example:
SELECT * FROM table_name GROUP BY Col A
Col A
That should return you:
abcd
baac