如何用一条sql2000语句计算同一个表相邻记录时间字段的差值

2024年11月30日 10:42
有1个网友回答
网友(1):

假设你的表有连续值的自增列ID,则:

select t1.*,datediff(second,t1.时间字段,t2.t1.时间字段) 差值
from 表 t1 left join 表 t2
where t1.ID+1=t2.ID