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

 

Hi, I'm trying to use the LIKE condition to check for LIKE last names, but I can't get it to work.  I want it to match for names like Tombleson and Tomblesom, Ng and NG, Olm-Shimpan and Olm Shipman, and Hose Aldana and Aldana.  Any suggestions? THANK YOU! 

 

proc sql;
UPDATE RawData
SET Timesheet_Approver = (SELECT Timesheet_Approver
                FROM MasterStudent
                WHERE MasterStudent.Position__=RawData.PositionNbr
                AND MasterStudent.Last_Name like "%" || RawData.Last_Name || "%")
WHERE EXISTS (SELECT 1
                FROM MasterStudent
                WHERE MasterStudent.Position__= RawData.PositionNbr
                AND MasterStudent.Last_Name like "%" || RawData.Last_Name || "%");
                quit;

1 ACCEPTED SOLUTION

Accepted Solutions
Reeza
Super User

Try the following instead:

=* is sounds like operator

 

MasterStudent.Last_Name =* RawData.Last_Name

http://support.sas.com/documentation/cdl/en/sqlproc/69049/HTML/default/viewer.htm#p0a62rd151ctown1x3...

View solution in original post

2 REPLIES 2
Reeza
Super User

Try the following instead:

=* is sounds like operator

 

MasterStudent.Last_Name =* RawData.Last_Name

http://support.sas.com/documentation/cdl/en/sqlproc/69049/HTML/default/viewer.htm#p0a62rd151ctown1x3...

jmckenzie
Calcite | Level 5

THANK YOU!!!!!

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

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

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