Hi,
I am running the following codes. Just wondering how do I change the dttm to come out as a proper date format?
PROC SQL;
CREATE TABLE WORK.QUERY_FOR_AUDIT_VISUALANALY_0000 AS
SELECT t1.timestamp_dttm,
t1.userid,
t1.object_type,
t1.executor_nm,
t1.newlasr_server_name,
t1.newlocation,
t1.newtable_name
FROM TMP00002.audit_visualanalytics t1
WHERE t1.timestamp_dttm > 31/12/2018;
QUIT;
regards
Cathy