Everyone knows the "=" sign.
SELECT * FROM mytable WHERE column1 = column2;
However, what if I have different contents in column1 and column2...but they are VERY similar? (maybe off by a space, or have a word that's different).
Is it possible to:
SELECT * FROM mytable WHERE ....column matches column2 with .4523423 "Score"...
I believe this is called fuzzy matching? Or pattern matching? That's the technical term for it.
EDIT: I know about Soundex and Levenstein disatance. IS that what you recommend?