在MariaDB中LIKE子句有哪些用法,用于做什么

Admin 2022-06-24 群英技术资讯 360 次浏览

关于“在MariaDB中LIKE子句有哪些用法,用于做什么”的知识有一些人不是很理解,对此小编给大家总结了相关内容,具有一定的参考借鉴价值,而且易于学习与理解,希望能对大家有所帮助,有这个方面学习需要的朋友就继续往下看吧。


 

   

在MariaDB中,当操作需要完全匹配时,LIKE子句与SELECT语句一起使用来检索数据。它可以与SELECTINSERTUPDATEDELETE语句一起使用。

它用于模式匹配并返回truefalse。用于比较的模式接受以下通配符:

  • "%"通配符:匹配字符数(0或更多)。
  • "_"通配符:匹配单个字符。它匹配其集合中的字符。

语法:

SELECT field, field2,... FROM table_name, table_name2,...  
WHERE field LIKE condition

1. 使用%通配符(百分号通配符)

假设我们有一个students表,并有以下数据。

MariaDB [testdb]> select * from students;
+------------+--------------+-----------------+----------------+
| student_id | student_name | student_address | admission_date |
+------------+--------------+-----------------+----------------+
|          1 | Maxsu        | Haikou          | 2017-01-07     |
|          3 | JMaster      | Beijing         | 2016-05-07     |
|          4 | Mahesh       | Guangzhou       | 2016-06-07     |
|          5 | Kobe         | Shanghai        | 2016-02-07     |
|          6 | Blaba        | Shengzhen       | 2016-08-07     |
|          7 | Maxsu        | Sanya           | 2017-08-08     |
+------------+--------------+-----------------+----------------+
6 rows in set (0.00 sec)

现在想要查询那些名字以Ma字母开头的所有学生信息,那么就可以使用LIKE条件的通配符来查找所有以Ma开头的名字。参考以下查询语句 -

SELECT student_name  
FROM students  
WHERE student_name LIKE 'Ma%';

执行上面查询语句,得到以下结果 -

MariaDB [testdb]> SELECT student_name
    -> FROM students
    -> WHERE student_name LIKE 'Ma%';
+--------------+
| student_name |
+--------------+
| Maxsu        |
| Mahesh       |
| Maxsu        |
+--------------+
3 rows in set (0.07 sec)

也可以在同一个字符串中多次使用通配符。例如,要查询名字中包含'Ma'字符的所有记录 -

SELECT student_name  
FROM students
WHERE student_name LIKE '%Ma%';

执行上面查询语句,得到以下结果 -

MariaDB [testdb]> SELECT student_name
    -> FROM students
    -> WHERE student_name LIKE '%Ma%';
+--------------+
| student_name |
+--------------+
| Maxsu        |
| JMaster      |
| Mahesh       |
| Maxsu        |
+--------------+
4 rows in set (0.00 sec)

2. 使用_通配符(下划线通配符)

使用带LIKE条件的通配符。`(下划线)通配符只检查一个字符。下面语句将查询名字为“Max_u”`的学生信息。

SELECT *  
FROM students
WHERE student_name LIKE 'Max_u';

执行上面查询语句,得到以下结果 -

MariaDB [testdb]> SELECT *
    -> FROM students
    -> WHERE student_name LIKE 'Max_u';
+------------+--------------+-----------------+----------------+
| student_id | student_name | student_address | admission_date |
+------------+--------------+-----------------+----------------+
|          1 | Maxsu        | Haikou          | 2017-01-07     |
|          7 | Maxsu        | Sanya           | 2017-08-08     |
+------------+--------------+-----------------+----------------+
2 rows in set (0.00 sec)

3. LIKE子句使用NOT运算符

在MariaDB中,LIKE子句可以使用NOT运算符。在NOT运算符中使用通配符。 在这个示例中,将是查询名字不是以"Ma"开头的所有学生信息。

SELECT *  
FROM students
WHERE student_name NOT LIKE 'Ma%';

执行上面查询语句,得到以下结果 -

MariaDB [testdb]> SELECT *
    -> FROM students
    -> WHERE student_name NOT LIKE 'Ma%';
+------------+--------------+-----------------+----------------+
| student_id | student_name | student_address | admission_date |
+------------+--------------+-----------------+----------------+
|          3 | JMaster      | Beijing         | 2016-05-07     |
|          5 | Kobe         | Shanghai        | 2016-02-07     |
|          6 | Blaba        | Shengzhen       | 2016-08-07     |
+------------+--------------+-----------------+----------------+
3 rows in set (0.00 sec)

以上就是关于“在MariaDB中LIKE子句有哪些用法,用于做什么”的相关知识,感谢各位的阅读,想要掌握这篇文章的知识点还需要大家自己动手实践使用过才能领会,如果想了解更多相关内容的文章,欢迎关注群英网络,小编每天都会为大家更新不同的知识。
群英智防CDN,智能加速解决方案
标签: LIKE子句

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。

猜你喜欢

成为群英会员,开启智能安全云计算之旅

立即注册
专业资深工程师驻守
7X24小时快速响应
一站式无忧技术支持
免费备案服务
免费拨打  400-678-4567
免费拨打  400-678-4567 免费拨打 400-678-4567 或 0668-2555555
在线客服
微信公众号
返回顶部
返回顶部 返回顶部
在线客服
在线客服