$ 0 0 SQL表内查重,查询重复记录select * from my_tabwhere dup_col in(select dup_col from my_tabgroup by dup_colhaving count(dup_col)>1)order by dup_col;