oralce 计算时间差的实现

oralce 计算时间差的实现

查询系统时间和给定时间相差的毫秒数

 select ceil((sysdate - to_date('2017-03-23 00:00:00' , 'yyyy-mm-dd hh24-mi-ss')) * 24 * 60 * 60 * 1000) 
相差豪秒数 from dual;

将account表中第一条数据的dcur_state_start_date(timestamp类型)字段值的相差豪秒数算出来

select ceil((sysdate -to_date( to_char(a.dcur_state_start_date,'yyyy-mm-dd hh24:mi:ss'),
 'yyyy-mm-dd hh24:mi:ss')) * 24 * 60 * 60 * 1000) 
相差豪秒数 from account a where rownum =1 ;

备注

*24(小时)
*60(分)
*60(秒)
*1000(毫秒)

感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐