How to find out the duplicated values in a column
Mike, September 04, 2008 - 10:58 am UTC
I'd like to print a list of the duplicated values in a column or more. Thanks.
September 04, 2008 - 1:36 pm UTC
select column, count(*) from t group by column having count(*) > 1;