Hello,
I would like to know how to initialize selected variables to zero to replace missing value by zero in proc sql create table
In the example below, I would like to have missing(web) and missing(internet) set to zero.
How is it possible to do that in a pro sql procedure?
Regards,
proc sql ;
create table internet as
select A.id, A.class, A.date,A.performer,A.title,A.category, A.web, B.internet
from dataset1 A full join
dataset2 B
on A.id=B.id
quit;
Use the coalesce function.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Check out this tutorial series to learn how to build your own steps in SAS Studio.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.