Answers for "oracle sql to_timestamp"

SQL
4

oracle to_timestamp

-- TO_TIMESTAMP(date_string,'YYYY-MM-DD HH24:MI:SS')
SELECT TO_TIMESTAMP('2021-02-21 23:12:01','YYYY-MM-DD HH24:MI:SS') FROM DUAL;
Posted by: Guest on March-16-2021
1

oracle timestamp to date

CAST(timestamp_expression AS DATE)
Posted by: Guest on May-11-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language