Hello all
Just an easy one, ive forgotten how to to a fuzzy search in a SQL string. The code I have so far is:
cmd.CommandText = "SELECT [First Name] + ' ' + [Surname] as EmployeeName FROM dbo.qryEmployeeDetails Where [First Name] + ' ' + [Surname] = ('" & Username & "') "
I want to find all the matching names, even if they are spelt a little differently.
Any ideas?
Cheers!
J
Just an easy one, ive forgotten how to to a fuzzy search in a SQL string. The code I have so far is:
cmd.CommandText = "SELECT [First Name] + ' ' + [Surname] as EmployeeName FROM dbo.qryEmployeeDetails Where [First Name] + ' ' + [Surname] = ('" & Username & "') "
I want to find all the matching names, even if they are spelt a little differently.
Any ideas?
Cheers!
J