I have a database of last names, first names, addresses, etc.
I am trying to search by last name, and I have no problem with escapting apostrophes, for example, the data in the table is "O'Malley" and if I search for "O'Malley" I get the intended results.
However, I would also like to be able to search for "omalley" and still return the "O'Malley" record from the table. Is there any way to ignore the apostrophe in the table?
Or, is my only other option to create a last name field that is stripped of the apostrophe, and then use and OR statement to check both.