

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is the use of SOUNDS LIKE operator in MySQL?
With the help of SOUNDS LIKE operator, MySQL search the similar sound values from the table.
Syntax
Expression1 SOUNDS LIKE Expression2
Here, both Expression1 and Expression2 will be compared based on their English pronunciation of sound.
Example
Following is an example from ‘student’ table which will match the two expressions based on the pronunciation of sound −
mysql> Select Id, Name, Address, Subject from student where name sounds like 'garav'; +------+--------+---------+-----------+ | Id | Name | Address | Subject | +------+--------+---------+-----------+ | 1 | Gaurav | Delhi | Computers | | 20 | Gaurav | Jaipur | Computers | +------+--------+---------+-----------+ 2 rows in set (0.00 sec)
- Related Questions & Answers
- What is the use of MySQL SOUNDS LIKE operator?
- What is the use of MySQL NOT LIKE operator?
- What is the use of RLIKE operator in MySQL?
- Explain the use of sql LIKE operator using MySQL in Python?
- What is the use of MySQL IS and IS NOT operator?
- What is the significant difference between MySQL LIKE and equal to (=) operator?
- What is the use of sizeof Operator in C#?
- What is the use of tilde operator (~) in R?
- What is the use of EXIST and EXIST NOT operator with MySQL subqueries?
- What is the use of scope resolution operator in C++?
- What is the use of NCHAR in MySQL?
- What is the operator <=> in MySQL?
- How to use MySQL SOUNDEX() function with LIKE operator to retrieve the records from table?
- What is the use of MySQL FROM_UNIXTIME() function?
- What is the use of MySQL GET_FORMAT() function?
Advertisements