I'm trying to search a table for users with similar names like John Smith and Joan Smith.
I tried this SQL statement but I think it is so simple and will not give me an accurate result
SELECT * FROM Profile Where DIFFERENCE(profile.name, 'John Smith') >=2
Thanks in advance