时间差sql
发布时间: 2024-12-08 03:11:34
㈠ sql求时间差,精确到秒分时
多行记录做这样的时间差值计算思路:
要将签入和签出配对处理,然后才能求出时间差值
或使用隐式游标进行处理,可以求出上一行记录和下一行记录的时间差值,但SQL语句极其晦涩难懂。
SQL计算秒的差值为:
selectdatediff(ss,'2019-01-0102:03:04',getdate())
㈡ sql 计算时间差得到时分秒。
declare @starttime as datetime
declare @endtime as datetime
set @starttime = '2009-11-21 00:00:00'
set @endtime = '2009-11-24 15:12:24'select right('00'+ cast(cast(datediff(ss ,@starttime,@endtime) / 3600 as int) as varchar),2) + ':' +
right('00'+ cast(cast(datediff(ss ,@starttime,@endtime) % 3600 / 60 as int) as varchar),2) + ':' +
right('00'+ cast(cast(datediff(ss ,@starttime,@endtime) % 60 as int) as varchar),2) as 时间差
时间差
--------------
87:12:24(1 行受影响)
热点内容