SQL查询字段重复数据的⽅法
SQL查询重复数据的⽅法
select*from table where column in(select column from table group by column having count(*)>1)
字段字符串去重复若要将重复的值排列在⼀起,可使⽤order by
select a.*from table as a,(select column from table group by column having count(*)>1) b lumn order lumn

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。