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

简单有关问题,马上散分,显示重复行

2012-03-19 
简单问题,马上散分,显示重复行IDTitlenum1aa12bb33cc44dd35ee46ff1我想实现查找后显示num唯一id和title,求

简单问题,马上散分,显示重复行
ID         Title             num
1             aa                   1
2             bb                   3
3             cc                   4
4             dd                   3
5             ee                   4
6             ff                   1


我想实现查找后显示num唯一id和title,求助

[解决办法]
select a.* from tb a,
(select num,min(id) as id from tb group by num) b
where a.num = b.num and a.id = b.id
[解决办法]
create table T(ID int, Title varchar(10), num int)
insert T select 1, 'aa ', 1
union all select 2, 'bb ', 3
union all select 3, 'cc ', 4
union all select 4, 'dd ', 3
union all select 5, 'ee ', 4
union all select 6, 'ff ', 1

select * from T as tmp
where not exists(select 1 from T where num=tmp.num and ID> tmp.ID)

--result
ID Title num
----------- ---------- -----------
4 dd 3
5 ee 4
6 ff 1

(3 row(s) affected)

热点排行