PLSQL | CURRENT_TIMESTAMP Function
Last Updated :
24 Oct, 2019
Improve
The PLSQL CURRENT_TIMESTAMP function is used to return the current date and time in session time zone. The time zone used is the time zone of the current SQL session as set by the ALTER SESSION command. The CURRENT_TIMESTAMP function returns a value of TIMESTAMP WITH TIME ZONE while the CURRENT_DATE function returns a value of DATE without time zone data.
The CURRENT_TIMESTAMP function accepts no parameters.
Syntax:
CURRENT_TIMESTAMPParameters Used: The CURRENT_TIMESTAMP function accepts no parameters. Return Value: The CURRENT_TIMESTAMP function returns a value of the current timestamp in TIMESTAMP WITH TIME ZONE data type. Supported Versions of Oracle/PLSQL:
- Oracle 12c
- Oracle 11g
- Oracle 10g
- Oracle 9i
- Oracle 8i
ALTER SESSION SET NLS_DATE_FORMAT = 'DD-MON-YYYY HH24:MI:SS'; SELECT CURRENT_TIMESTAMP FROM dual;Output:
Session altered. CURRENT_TIMESTAMP 22-OCT-19 07.28.32.374935 AM +00:00Example-2: Using the CURRENT_TIMESTAMP function to show the current timestamp using altered session time zone.
ALTER SESSION SET TIME_ZONE = '-10:00'; SELECT CURRENT_TIMESTAMP FROM dual;Output:
Session altered. CURRENT_TIMESTAMP 21-OCT-19 09.31.40.273270 PM -10:00The new date and time was adjusted about -10 hours as expected. Advantage: The CURRENT_TIMESTAMP function returns a value of TIMESTAMP WITH TIME ZONE while the CURRENT_DATE function returns a value of DATE without time zone data.