Answers for "oracle duration between timestamps"

SQL
1

oracle duration between timestamps

-- Duration between 2 timestamps
SELECT (extract(DAY FROM TIME2 - TIME1) * 24 * 60 * 60) 
           + (extract(HOUR FROM TIME2 - TIME1) * 60 * 60) 
           + (extract(MINUTE FROM TIME2 - TIME1) * 60) 
           + extract(SECOND FROM TIME2 - TIME1)
FROM DUAL;
Posted by: Guest on March-15-2021

Code answers related to "oracle duration between timestamps"

Code answers related to "SQL"

Browse Popular Code Answers by Language