Hi,
I need to write current sysdate and systime with PROC SQL. How should I format dates to fit DATETIME19.2 format in table?
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;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
Latest Updates
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.
Ready to level-up your skills? Choose your own adventure.
Browse our catalog!