Oracle SYSTIMESTAMP function
Description
The SYSTIMESTAMP function is used to get the system date, including fractional seconds and time zone, of the system on which the database resides.
Syntax:
SYSTIMESTAMP
Parameters:
No parameters or arguments.
Return Type:
The return type is TIMESTAMP WITH TIME ZONE.
Pictorial Presentation

Examples: Oracle SYSTIMESTAMP function
The following example returns the system timestamp:
SQL> SELECT SYSTIMESTAMP FROM DUAL;
Sample Output:
SYSTIMESTAMP ------------------------------------------------ 01-MAY-15 03.45.45.761000 PM +05:30
Previous:
SYSDATE
Next:
TO_CHAR(datetime)
- Weekly Trends
- Python Interview Questions and Answers: Comprehensive Guide
- Scala Exercises, Practice, Solution
- Kotlin Exercises practice with solution
- MongoDB Exercises, Practice, Solution
- SQL Exercises, Practice, Solution - JOINS
- Java Basic Programming Exercises
- SQL Subqueries
- Adventureworks Database Exercises
- C# Sharp Basic Exercises
- SQL COUNT() with distinct
- JavaScript String Exercises
- JavaScript HTML Form Validation
- Java Collection Exercises
- SQL COUNT() function
- SQL Inner Join