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;
April 27 - 30 | GAYLORD TEXAN
Register now to lock in early bird pricing through February 25!
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!