Find The Elapsed Time Between Two Dates In Oracle Sql
Solution 1:
When you subtract two DATE values like enddate - startdate you get the difference in days with decimal accuracy, so for example 1.5 would mean 1 1/2 days or 36 hours. You can convert that to HH:MI:SS using a lot of math, but an easier way is to convert the decimal value to an INTERVAL DAY TO SECOND value using the NUMTODSINTERVAL function:
NUMTODSINTERVAL(enddate - startdate, 'DAY')
You'd think the TO_CHAR function would be able to format this as HH:MI:SS, but it doesn't seem to work that way. You can use EXTRACT instead, and TO_CHAR to make sure you get leading zeros:
TO_CHAR(EXTRACT(HOURFROM NUMTODSINTERVAL(enddate-startdate, 'DAY')), 'FM00')
||':'||
TO_CHAR(EXTRACT(MINUTEFROM NUMTODSINTERVAL(enddate-startdate, 'DAY')), 'FM00')
||':'||
TO_CHAR(EXTRACT(SECONDFROM NUMTODSINTERVAL(enddate-startdate, 'DAY')), 'FM00')
The 00 part of the format code specifies two digits, with a leading zero if needed. The FM part gets rid of the leading space in the formatted result, which is reserved for a negative sign if needed.
Also note that your query gets aggregate values and uses them in the same SELECT list. Oracle won't let you do this. Try something like this instead:
WITH StartEndByID AS (
SELECT
msglog.id,
NUMTODSINTERVAL(max(msglog.timestamp) -min(msglog.timestamp), 'DAY') elapsed
FROM messagelog msglog
GROUPBY id
)
SELECT
id,
TO_CHAR(EXTRACT(HOURFROM elapsed), 'FM00') ||':'||
TO_CHAR(EXTRACT(MINUTEFROM elapsed), 'FM00') ||':'||
TO_CHAR(EXTRACT(SECONDFROM elapsed), 'FM00') AS ElapsedHHMISS
FROM StartEndByID
Solution 2:
Date arithmetic in Oracle results in a number expressed in days. So, to convert to hours, you would multiply by 24 and then trunc to get an integral number:
trunc(24 * (enddate - startdate))
To get minutes, convert the days value to minutes and mod() that with 60:
mod(trunc(24 * 60 * (enddate - startdate)), 60)
For seconds, again convert days to seconds and mod() that with 60:
mod(trunc(24 * 60 * 60 * (enddate - startdate)), 60)
Now you can put these together to get the string value you need.
Solution 3:
To get the diff in seconds you can use this
selectround(24 * 60 * 60* (TO_DATE('2017/02/17 9:32:25', 'YYYY/MM/DD HH:MI:SS') - TO_DATE('2017/02/17 8:30:30', 'YYYY/MM/DD HH:MI:SS'))) from dual;
Post a Comment for "Find The Elapsed Time Between Two Dates In Oracle Sql"