博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

查询重复数据的SQL语句

Posted on 2010-09-23 22:40  moss_tan_jun  阅读(280)  评论(0编辑  收藏  举报
select column1, column2
from TB 
where column1 in 
(select column1, column2 from TB 
group by column1, column2
having(count(*)>1))