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

SAS Innovate 2025: Register Now

Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!

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