码迷,mamicode.com
首页 > 其他好文 > 详细

查询一张表中有重复字段的记录

时间:2016-06-24 22:09:24      阅读:150      评论:0      收藏:0      [点我收藏+]

标签:

语法: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);

技术分享

 

查询一张表中有重复字段的记录

标签:

原文地址:http://www.cnblogs.com/D-Chen/p/5615308.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!