BookmarkSubscribeRSS Feed
tom12122
Obsidian | Level 7

Hi,

I need to write current sysdate and systime with PROC SQL. How should I format dates to fit DATETIME19.2 format in table?

1 REPLY 1
Linlin
Lapis Lazuli | Level 10

Is this what you want?

data have;

  input id age;

  cards;

  1 20

  2 30

  ;

run;

proc sql;

  select *,datetime() format=datetime19.2 as time

    from have;

quit;

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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
  • 6570 views
  • 0 likes
  • 2 in conversation