BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
mcook
Quartz | Level 8

I am trying to delete certain items from a data set, and make a table of the deleted observations for further analysis.  

 

Currently I am doing it as such:  

 

proc sql;

     create table Deleted_Items as

     select *

     from TABLE1

     where <conditions>;

quit; 

 

proc sql;

     delete * 

     from TABLE1

     where <conditions>;

quit;

 

 

Is it possible to do this in a single step?  

 

 

1 ACCEPTED SOLUTION

Accepted Solutions
Shmuel
Garnet | Level 18

Use a sas data step instead sql

data saved deleted;
  set have;
      if <condition> then output saved;
     else output deleted;
 run;

View solution in original post

2 REPLIES 2
Shmuel
Garnet | Level 18

Use a sas data step instead sql

data saved deleted;
  set have;
      if <condition> then output saved;
     else output deleted;
 run;
How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 898 views
  • 3 likes
  • 3 in conversation