存在的记忆

sql查询表中字段值相同的数据记录

表T中有字段id,name,age(注:id有相同值) 查询id相同且大于1的数据记录

select * from T a where exists (select id from T where id=a.id group by id having count(*)>1)

如果需要查询name存在相同的值,将id替换为name。

当前页面是本站的「Google AMP」版。查看和发表评论请点击:完整版 »