Hello: I am an SQL professional- brand new to SAS. I need to update just one row in SAS table. The datafield is a date type. I am just trying to update one row, set the field = "01Oct2015" where the id = xyz. The code runs and the value is set to a period. I know this must be a format issue. Could someone please help me?
Try this.
proc sql;
update have
set field='01Oct2015'd
where id='xyz';
quit;
data have;
input id date;
format date mmddyy10.;
informat date mmddyy10.;
cards;
1 10/25/2015
2 10/15/2015
3 10/10/2015
;
run;
data want;
set have;
if id ne 1 then date_new=put(date,mmddyy10.);
else date_new=put(date,date9.);
run;
proc print; run;
Try this.
proc sql;
update have
set field='01Oct2015'd
where id='xyz';
quit;
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.