在下面的表中,我想显示第3列中的值重复的两行:
<表类>
ID
Col2
Col3
tbody><<tr>1 123 2b 123 3 c 14 4d 65 5e 65 表类>
您的查询应该工作,但我建议窗口函数:
select t1.*
from (select t1.*, count(*) over (partition by col3) as cnt
from t1
) t1
where cnt > 1;