通过使用 LIKE 运算符和通配符,我们可以在另一个字符串中查找指定模式的字符串。
语法
LIKE specific_pattern
Specific_pattern 是我们想要在另一个字符串中查找的字符串模式。
示例
假设我们有一个名为“student”的表,其中包含学生的姓名,我们想要获取姓名中包含字符串“av”模式的所有学生的详细信息。可以借助以下 MySQL 查询来完成 -
mysql> Select * from Student Where Name LIKE '%av%';
+------+--------+---------+-----------+
| Id | Name | Address | Subject |
+------+--------+---------+-----------+
| 1 | Gaurav | Delhi | Computers |
| 2 | Aarav | Mumbai | History |
| 20 | Gaurav | Jaipur | Computers |
+------+--------+---------+-----------+
3 rows in set (0.00 sec)
在上面的示例中,“%”符号是与 LIKE 运算符一起使用的通配符。