BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
shlomiohana
Obsidian | Level 7

Hello,

 

I want to insert these 2 rows to every line in my table.

 

groupcompany
222

3

31

 

table:

bankbranchnumber_card
201333
202444

 

final table:

bankbranchnumber_cardgroupcompany
201333222
201333331
202444222
202444331

 

How can I do that?

Thanks.

1 ACCEPTED SOLUTION

Accepted Solutions
ghosh
Barite | Level 11

use a cartesian join

proc sql;
  create table want as
     select *
        from two, one
        ;
quit;
proc print;
run;

Untitled.png

View solution in original post

2 REPLIES 2
ghosh
Barite | Level 11

use a cartesian join

proc sql;
  create table want as
     select *
        from two, one
        ;
quit;
proc print;
run;

Untitled.png

Reeza
Super User

Is the items in your first set in a data set?

If not put them in a data set or use a data step. Putting them in a data step is a more dynamic approach. 

 

data want;
set sashelp.class;

group=1; company=22; output;
group=3; company=31; output;

run;

Or

 

data t1;
input group company;
cards;
1 22
3 31
;;;;

Then use the approach provided by @ghosh 

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 Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

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