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

Available on demand!

Missed SAS Innovate Las Vegas? Watch all the action for free! View the keynotes, general sessions and 22 breakouts on demand.

 

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.

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