/ Published in: SQL
A few examples of the SYSTIMESTAMP function.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
--SYSTIMESTAMP --Example 1 SELECT SYSTIMESTAMP FROM dual; --Example 2 SELECT SYSDATE, SYSTIMESTAMP FROM dual; --Example 3 SELECT SYSTIMESTAMP, TO_CHAR(SYSTIMESTAMP, 'dd Mon yyyy') AS text_output FROM dual;
URL: http://www.databasestar.com/oracle-systimestamp-function/