I have a table TIME_TABLE on Oracle 10.6. There is a field called Start_Date on this table.
Item Start_Date
1 3/13/2012 8:00:00 AM
2 4/2/2012 1:30:31 PM
I want to take only time information from Start_Date field like that, '8:00:00 AM'. Because I want to determine the time interval
CASE
WHEN START_DATE between TO_DATE ('07:00 AM','HH:MI:SS AM') and TO_DATE('11:59',' HH:MI:SS AM') THEN 'TIME1'
But it does not work! How can I do this ?
Thanks