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 

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 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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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