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)

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 449 views
  • 0 likes
  • 3 in conversation