I want to figure out how to join on a field when a user may have entered an English spelling of a word because of the keys available. This would be like replacing Küss with Kuss, François with Francois, José with Jose.
I've seen the terms "collation" and "regex" in several posts. I tried
SELECT Company collate SQL_Latin1_General_CP850_CI_AI, Company
FROM tblCompany
but my umlaut was still there, so that wouldn't join on where the umlaut wasn't used.
Any help to set me on a path would be greatly appreciated!