I am returning a set of records that may contain some rows that are identical except for one specific column. I am not interested in this column so it doesn't need to be part of the recordset.
Is the best way to use SELECT DISTINCT
and leave out the column that may be different?
Is there a way to do this while still being able to use *
in the SELECT
clause, or would you have to list all the columns?