Oracle9i SQL Reference Release 2 (9.2) Part Number A96540-02 |
|
|
View PDF |
new_time::=
NEW_TIME
returns the date and time in time zone zone2
when date and time in time zone zone1
are date
. Before using this function, you must set the NLS_DATE_FORMAT
parameter to display 24-hour time.
Note: This function takes as input only a limited number of time zones. You can have access to a much greater number of time zones by combining the |
The arguments zone1
and zone2
can be any of these text strings:
The following example returns an Atlantic Standard time, given the Pacific Standard time equivalent:
ALTER SESSION SET NLS_DATE_FORMAT = 'DD-MON-YYYY HH24:MI:SS'; SELECT NEW_TIME(TO_DATE( '11-10-99 01:23:45', 'MM-DD-YY HH24:MI:SS'), 'AST', 'PST') "New Date and Time" FROM DUAL; New Date and Time -------------------- 09-NOV-1999 21:23:45