BookmarkSubscribeRSS Feed
dion_y
Calcite | Level 5

Hi there:  I want to copy data as follow:

 

Tbl_A        Tbl_B

10              40

20              50

..                ..

 

Desire outcome:

Tbl_C - 2 columns

10          40

10          50

20          40

20          50

 

Any suggestions?

3 REPLIES 3
novinosrin
Tourmaline | Level 20
data Tbl_A   ;
input A;
cards;
10
20
;

data Tbl_B   ;
input B;
cards;
40
50
;

proc sql;
create table Tbl_C as
select *
from Tbl_A,Tbl_B;
quit;
Reeza
Super User
The term for this would be a cross join or a Cartesian product. You'll likely see a SAS note to that effect in your log.
dion_y
Calcite | Level 5

Thanks and it works.

sas-innovate-white.png

Our biggest data and AI event of the year.

Don’t miss the livestream kicking off May 7. It’s free. It’s easy. And it’s the best seat in the house.

Join us virtually with our complimentary SAS Innovate Digital Pass. Watch live or on-demand in multiple languages, with translations available to help you get the most out of every session.

 

Register now!

Mastering the WHERE Clause in PROC SQL

SAS' Charu Shankar shares her PROC SQL expertise by showing you how to master the WHERE clause using real winter weather data.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 3 replies
  • 920 views
  • 2 likes
  • 3 in conversation