有谁知道Oracle中类似于SQL中的datediff函数是什么
发布网友
发布时间:2022-03-27 15:58
我来回答
共2个回答
热心网友
时间:2022-03-27 17:28
months_between(d2,d1) 两个时间差几个月
select (d2-d1) from al; 相差多少天
select (d2-d1)*24 from al; 相差多少小时
select (d2-d1)*24*60 from al; 相差多少分钟
select (d2-d1)*24*60*60 from al; 相差多少秒
字符串转换为date类型
to_date('20141212 00:00:00','yyyymmdd hh24:mi:ss')
select (to_date('20141212 00:00:00','yyyymmdd hh24:mi:ss')-to_date('20140112 00:00:00','yyyymmdd hh24:mi:ss')) from al;
热心网友
时间:2022-03-27 18:46
两个日期相减就是天数