SOUNDS LIKE
This page is part of MariaDB's Documentation.
The parent of this page is: SQL Operators for MariaDB Enterprise Server
Topics on this page:
Overview
Performs Soundex matching.
EXAMPLES
CREATE TABLE sounds_like_example (
word VARCHAR(32)
);
INSERT INTO sounds_like_example VALUES
('Places'),
('Army'),
('Cats');
SELECT * from sounds_like_example
WHERE word SOUNDS LIKE 'play says'
OR word SOUNDS LIKE 'arm ee';
+--------+
| word |
+--------+
| Places |
| Army |
+--------+
CHANGE HISTORY
EXTERNAL REFERENCES
Additional information on this topic may be found in the MariaDB Public Knowledge Base.