BookmarkSubscribeRSS Feed
rahulks
Calcite | Level 5

If there is a condition,in which we have to take only those observations which are present in the same variable of different dataset, how we will write the query?

3 REPLIES 3
PGStats
Opal | Level 21

Something like this :

proc sql;

create table A_and_B as

select * from A

union all corresponding

select * from B;

quit;

selects only variables in table A and B which have the same name and type. Other variables not in common are dropped.

PG

PG
rahulks
Calcite | Level 5

thnx for the reply, but this query will not help me...

actually I works for the bank, and I have to put a query in a dataset which implies that, if account number is in accounts then table, then only account number will be added to the table on which I am applying my query.

PGStats
Opal | Level 21

A small example (input and output data) would help us to understand what you want.

PG

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

Register Now

How to choose a machine learning algorithm

Use this tutorial as a handy guide to weigh the pros and cons of these commonly used machine learning algorithms.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 3 replies
  • 1508 views
  • 0 likes
  • 2 in conversation