求一个求两个datetime的小时差的处理办法
有两个字段是datetime类型,我想取这两个字段的时间差(精确到小时),得到的结果是小时,比如时间差是6天4小时,得到的结果是148能够提供一个存储过程最好。 两个字段的类型是DATETIME YEAR TO SECOND
给你一个例子,可以参考下,
select
round(
substr((current year to second - to_date("2001-2-4 15:0:0")),1,10)*24+
substr((current year to second - to_date("2001-2-4 15:0:0")),11,2)+
substr((current year to second - to_date("2001-2-4 15:0:0")),14,2)/60
)
from systables 谢谢楼上的
页:
[1]