DB2查询当前时间与指定时间的时间差(相隔的秒数)。
例子:“拍品表 auct_item”中有个“结束时间 end_date”的字段,求结束时间与当前时间的间隔秒数。
select (DAYS(a.end_date) - DAYS(current timestamp)) * 86400 +(MIDNIGHT_SECONDS(a.end_date) - MIDNIGHT_SECONDS(current timestamp)) from auct_item a
DB2查询当前时间与指定时间的时间差(相隔的秒数)。
例子:“拍品表 auct_item”中有个“结束时间 end_date”的字段,求结束时间与当前时间的间隔秒数。
select (DAYS(a.end_date) - DAYS(current timestamp)) * 86400 +(MIDNIGHT_SECONDS(a.end_date) - MIDNIGHT_SECONDS(current timestamp)) from auct_item a