Oracle 11i
I would like to have the field_name_date_time display for the Central Daylight Time. Currently, the time/date data in the field is set to UTC. (I cannot and do not want to change the database, just what is displayed on the output.)
I tried setting the time zone but I cannot figure out the syntax.
How can I handle this? What is preferred?
select field_name_1, TO_CHAR(field_name_date_ti
me,'MM/DD/
YYYY HH24:MI:SS') "field_name_date_time", TO_CHAR(field_name__elapse
d_time / 60000 ) "Minutes" from table_view_v where field_name_1 = 'my name'
where
field_name_date_time type is a timestamp field
field_name__elapsed_time type is a integer and the time is in milliseconds