BookmarkSubscribeRSS Feed
c4th1
Fluorite | Level 6

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
PGStats
Opal | Level 21

Use

 

datepart(t1.timestamp_dttm) as timestamp_dt,

 

and

 

WHERE calculated timestamp_dt > '31DEC2018'd

PG

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 1 reply
  • 1219 views
  • 0 likes
  • 2 in conversation