Hi
Why does the following query not work?
Select To_date ('10:35 PM', 'HH24:MI') From DUAL
it gives the following error
date format picture ends before converting entire input string.
but the following query works fine
Select To_date ('10:35', 'HH24:MI') From DUAL
I need to convert the time format in the first query into HH24:MI in PLSQL, how can I do that?
Thank you
Thank youHH24:MI