Member
jasen
How to convert sysdate to utc time in oracle?
adan
@jasen
You can convert sysdate to UTC time in Oracle by using the following query:
1 2
SELECT SYS_EXTRACT_UTC(SYSTIMESTAMP) AS UTC_TIME FROM DUAL;
This query will extract the current UTC time from the system timestamp and display it as UTC_TIME.
scotty_walker
darrion.kuhn
shyann
dalton_moen
mallory_cormier