I'm trying to create a fuzzy logic to match similar names like rob and robert. The SQL Soundex function for these 2 words is providing a larger difference, which is not useful. Is there another way to find name matches.
            Asked
            
        
        
            Active
            
        
            Viewed 1,050 times
        
    1
            
            
        - 
                    1http://stackoverflow.com/questions/921978/fuzzy-matching-using-t-sql – Siyual Sep 16 '14 at 18:07
1 Answers
1
            
            
        A quick and simple way would be to use the search string "rob*" instead of "rob" or "robert". This is a crude and simple way and would not work with nicknames that spelled differently than the begining of the fullname. For example, "Bob" wouldn't be caught.
To cover all these nickname and similar names, See This Answer
 
     
     
    