storing just time, no date
732674Nov 24 2009 — edited Nov 24 2009I am trying to store times like 8:00:00 or 14:30:00, but no dates in one of my tables.
I have the column datatype set to DATE right now and tried INSERT INTO periods VALUES(to_date('08:00:00', 'hh24:mi:ss'), but when I ran a select query on this table i got back 1-Nov-09. Is it not possible to store just time? Or is there a better way or datatype that i am missing?
Thank you