select time from date type without to_char
968875Nov 14 2012 — edited Nov 14 2012I have table T(myDate date, + about 15 columns). When I insert values into it, i also insert the time of a date.
If I wanna see all the data in the table, I need to call to_char on column myDate. So need to write all the 15 column names in the select.
I'd like to simply write a select * from T, but see the time for myDate as well. Is this possible?
Thanks