n********6 发帖数: 1511 | 1 scenario:
有一个table a,里面包含时间先后的business transaction的records。
例如:
id, timestamp, x,
1001, 2008-09-26 1:00:00 00-00-00, 109
1002, 2008-09-26 1:01:01 00-00-00, 99
1003,2008-09-26 1:01:03 00-00-00, 222
1004, 2008-09-26 1:01:05 00-00-00, 209
id is identity.
timestamp是标准的sql getdate()格式,可以直接比较大小。(具体格式记不清了)
要求产生以下table:
1001, 2008-09-26 1:00:00 00-00-00, 109, 1002, 2008-09-26 1:01:01 00-00-00,
99
1002, 2008-09-26 1:01:01 00-00-00, 99, 1003,2008-09-26 1:01:03 00-00-00,
222
1003,2008-09-26 1:01:03 00-00-0 | c**t 发帖数: 2744 | 2 select a.*, b.*
from test a
left join test b
on a.id+1=b.id
【在 n********6 的大作中提到】 : scenario: : 有一个table a,里面包含时间先后的business transaction的records。 : 例如: : id, timestamp, x, : 1001, 2008-09-26 1:00:00 00-00-00, 109 : 1002, 2008-09-26 1:01:01 00-00-00, 99 : 1003,2008-09-26 1:01:03 00-00-00, 222 : 1004, 2008-09-26 1:01:05 00-00-00, 209 : id is identity. : timestamp是标准的sql getdate()格式,可以直接比较大小。(具体格式记不清了)
|
|