Match slightly different records in a field
问题 I have the below table HAVE. How can I go about getting results in "WANT" ? I'll appreciate ideas and I'm open to any fuzzy match algorithm out there Have ID Name 1 Davi 2 David 3 DAVID 4 Micheal 5 Michael 6 Oracle 7 Tepper WANT ID Name mtch_ind 1 Davi 1 2 David 1 3 DAVID 1 4 Micheal 2 5 Michael 2 6 Oracle 3 7 Tepper 4 TABLE DDL and record insert CREATE TABLE HAVE ( ID INTEGER, Name VARCHAR(10) ); INSERT INTO data VALUES ('1', 'Davi'); INSERT INTO data VALUES ('2', 'David'); INSERT INTO data