-
Notifications
You must be signed in to change notification settings - Fork 8.3k
SOUNDEX function #39880
Copy link
Copy link
Closed
Labels
Description
https://mariadb.com/kb/en/soundex/
mysql> select SOUNDEX('aksel');
+------------------+
| SOUNDEX('aksel') |
+------------------+
| A240 |
+------------------+
1 row in set (0.00 sec)
mysql> select SOUNDEX('axel');
+-----------------+
| SOUNDEX('axel') |
+-----------------+
| A240 |
+-----------------+
1 row in set (0.00 sec)Also interesting https://mariadb.com/kb/en/sounds-like/
Reactions are currently unavailable