查询一张表中有重复字段的记录
Posted D蓝叶
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了查询一张表中有重复字段的记录相关的知识,希望对你有一定的参考价值。
语法:select * from 表名 where (字段名) in (select 字段名 from 表名 group by 字段名 having count(*) > 1);
如一下goods表:
:
执行sql语句:select * from goods where inventory in (select inventory from goods group by inventory having count(*) > 1);
以上是关于查询一张表中有重复字段的记录的主要内容,如果未能解决你的问题,请参考以下文章