I have a table that I must search for a persons name. I have the fields nameFirst and nameLast in this table. I need to find someway to join the info for those two fields together so I can do a statement such as:
where
[full name] like '%searchValue%'
But sadly, I have no idea how to search both those fields combined info for a string.
Example: I'm search for string 'Jimmy Winter'
I can't search just the nameFirst field for that because 'Winter' is no where in it. And I can't search the nameLast field because 'Jimmy' is nowhere in it. Any help would be greatly appreciated!!
Thanks!
Jimmy
where
[full name] like '%searchValue%'
But sadly, I have no idea how to search both those fields combined info for a string.
Example: I'm search for string 'Jimmy Winter'
I can't search just the nameFirst field for that because 'Winter' is no where in it. And I can't search the nameLast field because 'Jimmy' is nowhere in it. Any help would be greatly appreciated!!
Thanks!
Jimmy