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

Hi, I am struggling with a particular join that I hope has a solution in SAS.  I have 2 tables as follows:

Reference table 1:

CityRef:

NewYork

London

Paris

Brussels

Canberra

Raw extracted table 2:

CityRaw:

oshNewYorkd

whatevrLondon

Parisowjshg

Brssuls

I would like the following right join to be returned:

CityRaw | CityRef

oshNewYorkd | NewYork

whatevrLondon | London

Parisowjshg | Paris

Brssuls | -

So I would like to join these two tables together if the key from table 1 can be found within the key from table 2.  I hope this makes sense.  Perhaps proc sql is the answer?  Any help would be greatly appreciated and would save me writing a complex iterative find macro in VBA!  I am using EG 9.3.

Rob

1 ACCEPTED SOLUTION

Accepted Solutions
stat_sas
Ammonite | Level 13

data table1;
input CityRef $10.;
datalines;
NewYork
London
Paris
Brussels
Canberra
;

data table2;
input CityRaw $15.;
datalines;
oshNewYorkd
whatevrLondon
Parisowjshg
Brssuls
;

proc sql;

select catx(" | ",a.cityraw,b.cityref) as city

from table2 a left join table1 b

on strip(upcase(cityraw)) contains strip(upcase(cityref));

quit;

View solution in original post

2 REPLIES 2
stat_sas
Ammonite | Level 13

data table1;
input CityRef $10.;
datalines;
NewYork
London
Paris
Brussels
Canberra
;

data table2;
input CityRaw $15.;
datalines;
oshNewYorkd
whatevrLondon
Parisowjshg
Brssuls
;

proc sql;

select catx(" | ",a.cityraw,b.cityref) as city

from table2 a left join table1 b

on strip(upcase(cityraw)) contains strip(upcase(cityref));

quit;

_robindavies
Calcite | Level 5

Wonderful, thank you!!

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

Creating Custom Steps in SAS Studio

Check out this tutorial series to learn how to build your own steps in SAS Studio.

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
  • 5695 views
  • 1 like
  • 2 in conversation