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

Good morning to all and many thnks for your kindly help !!!

I need to do a Proc Sql with two DB that has the same named columns and I need to keep all them, there is a way to rename automatically the second columns DB?

 

Many tnks

Tecla

1 ACCEPTED SOLUTION

Accepted Solutions
Kurt_Bremser
Super User

AFAIK, no.

If there is a considerable number of columns, you can create a macro variable containing the code for all columns that you want to do this for:

data class1;
set sashelp.class;
run;

data class2;
set sashelp.class;
run;

data _null_;
set sashelp.vcolumn end=done;
where libname = "WORK" and memname = "CLASS2" and upcase(name) ne "NAME";
/* the last condition excludes the key variable on which the join will be made */
length statement $1000;
retain statement;
statement = catx(",",statement,"b."!!name!!" as b_"!!name);
if done then call symputx("statement",statement);
run;

proc sql;
create table want as
  select
    a.*,
    &statement.
  from class1 a, class2 b
  where a.name = b.name
;
quit;

View solution in original post

3 REPLIES 3
Kurt_Bremser
Super User

AFAIK, no.

If there is a considerable number of columns, you can create a macro variable containing the code for all columns that you want to do this for:

data class1;
set sashelp.class;
run;

data class2;
set sashelp.class;
run;

data _null_;
set sashelp.vcolumn end=done;
where libname = "WORK" and memname = "CLASS2" and upcase(name) ne "NAME";
/* the last condition excludes the key variable on which the join will be made */
length statement $1000;
retain statement;
statement = catx(",",statement,"b."!!name!!" as b_"!!name);
if done then call symputx("statement",statement);
run;

proc sql;
create table want as
  select
    a.*,
    &statement.
  from class1 a, class2 b
  where a.name = b.name
;
quit;
Tecla1
Quartz | Level 8
Tnks for your kindly replay.

Tecla

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
  • 3 replies
  • 996 views
  • 0 likes
  • 2 in conversation