oracle中功能等同sqlserver中的datediff的函数?
发布网友
发布时间:2022-03-27 15:58
我来回答
共2个回答
热心网友
时间:2022-03-27 17:28
是天数的计算,
SQLServer中:
select datediff(day,'2006-05-26 10:11','2006-05-25 11:11')
结果为1天,只判断日期中的天数,是不根据时间来判断的。但是转到ORACLE:
select trunc((to_date('2006-05-26 10:11','YYYY-MM-DD HH:MI') - to_date('2006-05-25 11:11','YYYY-MM-DD HH:MI'))) as datediff from al
结果为0,只有把前面一个日期改成'2006-05-26 11:11'之后的时间才返回1天。
我要求是只根据天数来求值,看来要统一把比较的日期改到最小单位为天的日期,实际使用中是要把sysdate与结果集中字段计算的,该字段compdate是YYYY-MM-DD HH:MI格式的varchar2类型,难道要我这么写:
select trunc(to_date(to_char(sysdate,'YYYYMMDD'),'YYYYMMDD') - to_date(to_char(to_date(compdate,'YYYY-MM-DD HH:MI'),'YYYYMMDD'),'YYYYMMDD')) from table1
感觉太烦了,有更好的办法吗?
-----------------------------
解决方法:
select trunc(sysdate) - trunc(to_date('2006-05-28 10:20','YYYY-MM-DD HH24:MI')) from al
select * from 监控温度表 A where 时间 between '" + Str(dtStart.Value) + "'AND '" + Str(dtEnd.Value) + "' And Not Exists (Select 时间 From 监控温度表 Where DateDiff(mi, 时间, A.时间) <= " + Str(text1.text) + ") order by id
try
select * from 监控温度表 A where 时间 between '" + Str(dtStart.Value) + "'AND '" + Str(dtEnd.Value) + "' And Not Exists (Select 时间 From 监控温度表 Where DateDiff(mi, 时间, A.时间) <=5 ) order by id
热心网友
时间:2022-03-27 18:46
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;