```TO_CHAR ( Contact.lastModifiedDate, 'YYYY-MM-DD...
# suiteql
n
Copy code
TO_CHAR ( Contact.lastModifiedDate, 'YYYY-MM-DD HH:MI:SS' ) AS lastModifiedDate
I want this to be in UTC format
r
SYS_EXTRACT_UTC (date)
n
BEAUTIFUL
p
@Nbtwist -- did this work for you? I get an error when using this function on
transaction.lastModifiedDate
, in my IDE it shows this field stored as a
timestamp
without any TZ info.
n
@pablo yea this was the end result:
Copy code
TO_CHAR( SYS_EXTRACT_UTC(Contact.lastModifiedDate), 'YYYY-MM-DD HH24:MI:SS' ) AS lastModifiedDate
👏 1