查欄位指定資料後一行記錄

weixin_34262482發表於2010-01-03

/*
ID    NUM 
1    800 
2    855 
3    866 
4    800 
5    844 
如何查NUM欄位指定資料後一行記錄?如NUM欄位中800後一條記錄
*/ 

create table tb(ID int,   NUM int)
insert into tb values(1 ,   800 )
insert into tb values(2 ,   855 )
insert into tb values(3 ,   866 )
insert into tb values(4 ,   800 )
insert into tb values(5 ,   844 )
go

--如果ID連續
select m.* from tb m , tb n where m.id = n.id + 1 and n.num = 800
/*

ID          NUM         
----------- ----------- 
2           855
5           844

(所影響的行數為 2 行)
*/

--如果ID不連續,sql 2000
select m.id , m.num from
(
 
select t.* , px = (select count(1) from tb where id < t.id) + 1 from tb t
) m,
(
 
select t.* , px = (select count(1) from tb where id < t.id) + 1 from tb t
) n
where m.id = n.id + 1 and n.num = 800
/*

ID          NUM         
----------- ----------- 
2           855
5           844

(所影響的行數為 2 行)
*/

--如果ID不連續,sql 2005

select m.id , m.num from
(
 
select t.* , px = row_number() over(order by id) from tb t
) m,
(
 
select t.* , px = row_number() over(order by id) from tb t
) n
where m.id = n.id + 1 and n.num = 800
/*

ID          NUM         
----------- ----------- 
2           855
5           844

(所影響的行數為 2 行)
*/

drop table tb




相關文章