# SOUNDS LIKE

## Syntax

```sql
expr1 SOUNDS LIKE expr2
```

## Description

This is the same as [SOUNDEX](https://mariadb.com/docs/server/reference/sql-functions/string-functions/soundex)(expr1) = `SOUNDEX(expr2)`.

## Example

```sql
SELECT givenname, surname FROM users WHERE givenname SOUNDS LIKE "robert";
+-----------+---------+
| givenname | surname |
+-----------+---------+
| Roberto   | Castro  |
+-----------+---------+
```

<sub>*This page is licensed: GPLv2, originally from*</sub> [<sub>*fill\_help\_tables.sql*</sub>](https://github.com/MariaDB/server/blob/main/scripts/fill_help_tables.sql)

{% @marketo/form formId="4316" %}
