proc sql;
title 'Updated MLPs';
select * from WORK.IDENTIFY_INACTIVE_MLP_YESTERDAY
except
select * from WORK.MLP_RECORDS_2_ADD_UPDATE;
Need the results to create a table?!
proc sql;
CREATE TABLE except AS
select * from WORK.IDENTIFY_INACTIVE_MLP_YESTERDAY
except
select * from WORK.MLP_RECORDS_2_ADD_UPDATE;
Then tell it to create a table 😉
proc sql;
title 'Updated MLPs';
create table want as select * from (
select * from WORK.IDENTIFY_INACTIVE_MLP_YESTERDAY
except
select * from WORK.MLP_RECORDS_2_ADD_UPDATE);
proc sql;
CREATE TABLE except AS
select * from WORK.IDENTIFY_INACTIVE_MLP_YESTERDAY
except
select * from WORK.MLP_RECORDS_2_ADD_UPDATE;
Please note, the title is not needed as there is no printed output with create table, and please finish code blocks:
proc sql; create table WANT as select * from WORK.IDENTIFY_INACTIVE_MLP_YESTERDAY except select * from WORK.MLP_RECORDS_2_ADD_UPDATE; quit;
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.