select * from tb_producttype where protname in(
select protname from tb_producttype group by protname having count(*)>1
)
查找表中的重复行
最新推荐文章于 2024-08-28 04:07:51 发布
select * from tb_producttype where protname in(
select protname from tb_producttype group by protname having count(*)>1
)