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

I want to select only those observations from a table (Final_lIst) which don't belong in any of the two other tables (supp_data and ntb_data)

Will this code work?

 

proc sql;
create table Final_list as

select * from final_list

where customer_number

not in
(select distinct customer_number from supp_data and ntb_data  ) ;
quit;

1 ACCEPTED SOLUTION

Accepted Solutions
Tom
Super User Tom
Super User

You have the AND in the wrong place.

where customer_number not in (select distinct customer_number from supp_data)
  and customer_number not in (select distinct customer_number from ntb_data)

View solution in original post

2 REPLIES 2
Reeza
Super User

Unfortunately not, but this may ... if it doesn't post the log.

 

proc sql;
create table Final_list as

select * from final_list

where customer_number

not in
(select distinct customer_number from supp_data union select distinct customer_number from ntb_data  ) ;
quit;
Tom
Super User Tom
Super User

You have the AND in the wrong place.

where customer_number not in (select distinct customer_number from supp_data)
  and customer_number not in (select distinct customer_number from ntb_data)
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
  • 983 views
  • 0 likes
  • 3 in conversation