vote up 0 vote down star

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

flag
Please tag or at least mention in your questions the software you're using (Oracle in this case, I guess?). – Nicholas Riley Nov 7 at 5:39
@Nicholas: You can edit tags yourself... – OMG Ponies Nov 7 at 5:40
@OMG - yes, he can; he shouldn't have to, and it is not unreasonable to expect the person asking the question to tag it appropriately. However, a first-time asker should be cut some slack. – Jonathan Leffler Nov 7 at 5:51
(The reason I didn't just edit the tags was that I wasn't sure, and the reason I didn't answer is I don't use Oracle any more :-) – Nicholas Riley Nov 7 at 18:03

2 Answers

vote up 2 vote down

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.

SELECT TO_CHAR(TRUNC(SYSDATE) + (LEVEL / 24), 'HH24:mi') 
  FROM DUAL
CONNECT BY LEVEL <= 24

This is not good.

SELECT TO_CHAR(TRUNC(SYSDATE + (LEVEL / 24)), 'HH24:mi') 
  FROM DUAL
CONNECT BY LEVEL <= 24
link|flag
vote up 2 vote down

This will work for Oracle 9i+:

SELECT TO_CHAR(TRUNC(SYSDATE) + (LEVEL / 24)), 'HH24:mi') 
  FROM DUAL
CONNECT BY LEVEL <= 24
link|flag
+1 ... needed something just like this for a complex query involving a result set of hours for the last day - now we'll see if the optimizer leaves it alone :-) – dpbradley Nov 8 at 12:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.