首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > SQL Server >

怎么在表中查询有相同列的行?

2012-01-12 
如何在表中查询有相同列的行???????RT[解决办法]select * from table where ff in(select ff from table g

如何在表中查询有相同列的行???????
RT

[解决办法]
select * from table where ff in(select ff from table group by ff having(count(*)> 1))
[解决办法]
select col,重复行数=count(*) from tb group by col having count(*)> 1
[解决办法]
select * from t a
left join
(
select id ,count(*) from t group by id having count(*)> 1
)b on a.id=b.id

热点排行