Access 2010 SQL Query find partial match in string of full word only
I hope this is a simple one, I just can't find how to get the result I want, maybe I am using the wrong keyword in SQL? I am searching an Employee table which contains a Full Name field, this field can be "Sam" or "Mr Evans" or "Mr Sam Evans" I am trying to find partial matches with another Names table which contains a Name field - this is usually a short name such as "Sam" or "Evans" but could be "Sam Evans" I have tried like, with and without * as follows SELECT tblEmployee.FullName, tblNames.Name FROM tblEmployee, tblNames WHERE tblEmployee.FullName Like "*" & tblNames.Name & "*" as well as