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.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1098 views
  • 2 likes
  • 3 in conversation