返回特定列具有重复值的行



在下面的表中,我想显示第3列中的值重复的两行:

<表类> ID Col2 Col3 tbody><<tr>11232b1233c144d655e65

您的查询应该工作,但我建议窗口函数:

select t1.*
from (select t1.*, count(*) over (partition by col3) as cnt
from t1
) t1
where cnt > 1;

相关内容

  • 没有找到相关文章

最新更新