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;

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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