MySQL SOUNDS LIKE Function

MySQL SOUNDS LIKE is one of the String functions, which is useful to compare the Soundex codes of a given two string expressions. The basic syntax of the SOUNDS LIKE Function is as shown below: SELECT ‘String_Expression1’ SOUNDS LIKE ‘String_Expression2′ This is same as the SOUNDEX(‘String_Expression1’) = SOUNDEX(‘String_Expression2’). I suggest you refer to the SOUNDEX … Read more