How to convert the timing into 24 hrs basis
Hi friends
I have a requirement to the timing from 12hr to 24 basis in my sql script
SELECT request_id,
TO_CHAR (requested_start_date, 'DD-MON-RR HH:MI:SS') AS "Started At",
CEIL ((SYSDATE - actual_start_date) * 1440) AS "Running for Minutes"
FROM xxx;
here in the above script i have used this for requested_start_date .....TO_CHAR (requested_start_date, 'DD-MON-RR HH24:MI:SS')
But
how can i change this to 24hrs basis-> CEIL ((SYSDATE - actual_start_date) * 1440) AS "Running for Minutes"
thanks in advance
Thiliban
Edited by: welcome07 on Jan 10, 2011 11:36 AM