Hi
I was trying to display just the hours in 24hr format like:
select to_char(trunc(sysdate+(1/24)),'HH24:mi') from dual
But this only always returns 00:00. How can I show 01:00 to 23:00?
Thanks and Regards
|
|
|||||||||
|
|
|
If you want to display hours, you need your date to actually contain hours. That means - get your brackets for TRUNC() right. This is good.
This is not good.
|
||
|
|
|
|
This will work for Oracle 9i+:
|
|||
|