Hi
could someone help me with trying to determine the duration in seconds between 2 dates...?
This is what i'm trying to do :
select
START,
RELEASE,
(TO_DATE(
SUBSTR(RELEASE, 1, length(RELEASE) - 4), 'YYYY-MM-DD HH24:MI:SS'))-
(TO_DATE(
SUBSTR(START, 1, length(START) - 4), 'YYYY-MM-DD HH24:MI:SS')) As Duration
from table 1
Thanks everyone...
could someone help me with trying to determine the duration in seconds between 2 dates...?
This is what i'm trying to do :
select
START,
RELEASE,
(TO_DATE(
SUBSTR(RELEASE, 1, length(RELEASE) - 4), 'YYYY-MM-DD HH24:MI:SS'))-
(TO_DATE(
SUBSTR(START, 1, length(START) - 4), 'YYYY-MM-DD HH24:MI:SS')) As Duration
from table 1
Thanks everyone...