众果搜的博客

脚踏大地,仰望星空,致力于财经投资网站导航与在线网络工具的开发与普及

Search(博客搜索)

热文排行

最近发表

最新评论及回复

« Z-blog热文插件始终无法安装成功解决办法新西兰公司称三鹿奶粉被污染在奥运前已通知石家庄 »

字段记录重复的查询

 目前有一个表XS,表中有xn,xq,xh,xkh等字段信息。表中有几百万条数据。

要求:

1、查询出xh字段重复的数据

2、在查询出xh重复的数据中,查出xkh重复的数据

注:数据要每条显示,不能count(*)

SQLServer上测试通过,显示该记录的全部字段:

1.select * from joke where title in(select title from joke   group by title having count(title)>1)

为了在实例表上的测试方便,上面语句假设是title是xh字段,joke是表名,>1说明字段数据存在重复。

2.解决了1,2问题就好解决了:

select * from joke where title in(select title from joke   group by title having count(title)>1) and title2 in(select title2 from joke group by title2 having count(title2)>2)

若存在问题,请留言。

发表评论:

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。

Powered By Z-Blog 1.8 Spirit Build 80722 Code detection by Codefense

Copyright www.zhongguosou.com. Some Rights Reserved.微信号:MiZhiHeiGeTaXiaoMi