- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Posted 06-08-2018 01:04 AM
(1389 views)
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
1 REPLY 1
- Mark as New
- Bookmark
- Subscribe
- Mute
- RSS Feed
- Permalink
- Report Inappropriate Content
Use
datepart(t1.timestamp_dttm) as timestamp_dt,
and
WHERE calculated timestamp_dt > '31DEC2018'd
PG