博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SQL查找出某一列中存在重复的数据
阅读量:5752 次
发布时间:2019-06-18

本文共 375 字,大约阅读时间需要 1 分钟。

hot3.png

select a.*  from businaccount a, customer c,custperson cust where a.client_id IN (SELECT b.client_id                         FROM businaccount b                        GROUP BY b.client_id                       HAVING COUNT(*) > 1)   and a.client_id = c.client_id   and c.client_id = cust.client_id order by a.client_id asc;

 

转载于:https://my.oschina.net/easonwang14/blog/757777

你可能感兴趣的文章
View绘制流程
查看>>
OC第二天—封装
查看>>
win8.1中安装rabbitmq
查看>>
Linux(centOS):Exception in thread "main" java.lang.UnsupportedClassVersionError***
查看>>
[转]Eclipse is running in a JRE, but a JDK is required 解决方法
查看>>
Nagios 监控AP客户端数量
查看>>
启动tomcat报错org.hibernate.cache.CacheProvider
查看>>
Python生成器和迭代器的关系
查看>>
Linux下yum源配置
查看>>
「C语言回顾之旅」第一篇:指针详解
查看>>
探秘Java虚拟机——内存管理与垃圾回收
查看>>
[原]LVM管理与虚拟机管理
查看>>
Android APK文件解析
查看>>
[NHibernate]立即加载
查看>>
request常用方法
查看>>
3、SPSS做非参数检验
查看>>
proxy_pass 与 正则表达式
查看>>
Spring中ApplicationContext的事件机制
查看>>
margin和padding的区别
查看>>
RHCE 学习笔记(15)- KVM
查看>>