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

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 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
  • 997 views
  • 0 likes
  • 2 in conversation