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

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

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