Hi all.
I have time value 04:30:25 , I want to convert this to seconds . Is there any dedicated function to do this...?
I know that we can extract hours ,minutes, seconds then we can calculate the second .
SELECT extract ( hour from t ) * 60*60 + extract ( minutes from t ) * 60 + extract ( seconds from t ) from test ;
But I want some other way...
Thanks