I have one Oracle table in which ORACLE time column stored in following format.
for 12 AM - 0
for 1 AM - 3600
for 2 AM - 7200 . . .
for 23 PM 82800
i.e. if time is 3 AM then it will be stored as 10800 if time is 11 PM then it will be stored as 82800.
Now I want to select records which are not between 11 PM to 3 AM.
SELECT TIMECol
FROM MyTable
WHERE IBS_To_Time(TimeCol) NOT BETWEEN IBS_To_Time(10800) AND IBS_To_Time(82800)
IBS_To_Time will Converts seconds to 'HH:MM:SS' format But this query does not display expected result. Please help for same. What should be the optimized and best approach.
So it means you want to select records which are between 3am to 11 pm (excluding)