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;
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 save with the early bird rate—just $795!
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.