Table of Contents
一、排序
二、数据过滤操作符(and/or/in/not)
三、数据过滤通配符
四、使用正则表达式
Home Database Mysql Tutorial (8):mysql查询操作及正则表达式小结_MySQL

(8):mysql查询操作及正则表达式小结_MySQL

Jun 01, 2016 pm 01:28 PM
mysql blog expression

正则表达式

bitsCN.com

怎么说呢,用markdown编辑好的文本,无法用在博客园中,不知道怎么处理。

一、排序

1、按多个列排序
使用逗号隔开,如果指定方向则紧挨着要排序的列名
对于多个列的排序,先按照前一个排序然后在前一个的基础上按照后面的排序。
如:

SELECT * FROM a2 ORDER BY a_id DESC,t_id desc
Copy after login

数据结果如下:

2、order bylimit

SELECT * FROM a2 ORDER BY a_id DESC,t_id desc LIMIT 1
Copy after login

注意:
order by 的位置,from之后,limit之前。

二、数据过滤操作符(and/or/in/not)

注意:优先级
当含有andor时,and的优先级高于or,所以先执行and,解决的办法就是使用()括号的优先级高于and,能够消除歧义。
如:

SELECT * FROM a2 WHERE (a_id = 2 or t_id>4) AND id>3
Copy after login

in操作符的特点
in操作符完成了与or相同的功能,如:

SELECT * FROM a2 WHERE t_id in(1,2,3)SELECT * FROM a2 WHERE t_id =1 OR t_id=2 OR t_id=3
Copy after login

上面两个功能相同。
既然如此,那么为什么还用in呢,下面就说说in的优点:

in的优点:
1.在使用长的合法选项清单时,IN操作符的更清楚直观
2.计算次序容易管理
3.比OR执行快
4.IN最大的优点可以包含其他select语句,能够动态的建立Where子句。

SELECT * FROM a2 WHERE t_id in(    SELECT t_id FROM a2 WHERE id=5);
Copy after login

NOT 取反
NOTINBETWEENexists子句取反。

三、数据过滤通配符

%通配符

%:表示任何字符出现任意次数

LIKE  '惠普%' :以'惠普'开头 LIKE  '%惠普' :以'惠普'结尾 LIKE '%惠普%':包含'惠普' LIKE 's%e':以s开头,e结尾
Copy after login

注意:

1.除了一个或多个字符外,%还能匹配0个字符。
2.尾空格可能会干扰通配符匹配,如:保存great时,如果它后面有一个或多个空格,则%great将不会匹配它们,因为后面有多余的字符(空格),解决办法就是使用双%,%great%,一个更好的办法是使用函数去掉首尾空格。
3.%不能匹配NULL.

_通配符
下划线通配符与%相同,但是它只匹配单个字符而非多个。

SELECT * FROM a WHERE name LIKE '_ood'  #goodSELECT * FROM a WHERE name LIKE 'goo_'  #goodSELECT * FROM a WHERE name LIKE 'go_d'  #good
Copy after login

优化:
通配符在搜索处理上比其他的要慢些,所以要记住以下技巧:

1.不要过度使用通配符
2.不要把它们用在搜索模式的开始处,如若不然,搜索起来会很慢的。
3.仔细注意通配符的位置,切勿放错。

四、使用正则表达式

本小节学习如何在Where子句中使用正则表达式来更好的控制数据过滤。
更多详细知识参考《正则表达式必知必会》
1.基本字符的匹配

SELECT * FROM a1 WHERE name regexp '1000'  #匹配名称含有1000的所有行SELECT * FROM a1 WHERE name regexp '.000'  #匹配以000结尾的所有行,(.正则中表示:匹配任意一个字符)
Copy after login

从中可以看到正则表达式能够模拟LIKE使用通配符,注意:在通配符能完成的时候就不用正则,因为正则可能慢点,当然正则也能简化通配符,完成更大的作用。所以要有所取舍。

LIKEREGEXP的区别:

 SELECT * FROM a1 WHERE name LIKE 'a' SELECT * FROM a1 WHERE name regexp 'a' 
Copy after login

下面两条语句第一条不返回数据,第二条返回数据。
原因如下:

LIKE匹配整个列值时,不会找到它,相应的行也不会被返回(除非使用通配符)
REGEXP匹配时,会自动查找并返回结果。
那么REGEXP也能匹配整个列值,使用^$定位符即可!

匹配不区分大小写

Mysql正则大小写都会匹配,为区分大小写可使用binary关键字,如:

SELECT * FROM a1 WHERE name LIKE binary '%J%'   #使用LIKE+通配符匹配大写JSELECT * FROM a1 WHERE name regexp binary 'j'   #使用正则匹配小写j
Copy after login

2.进行OR匹配

|为正则表达式的OR操作符,表示匹配其中之一

SELECT * FROM a1 WHERE name regexp binary 'a|j|G' 
Copy after login

3.匹配特定字符

使用[]括起来的字符,将会匹配其中任意单个字符。

SELECT * FROM a1 WHERE name regexp '[12]st'
Copy after login

以上'[12]st'正则表达式,[12]定义一组字符,它的意思是匹配1或2,因此结果如下:

正如所见,[]是另一种OR语句,[123]st可以是[1|2|3]st的缩写,也可以使用后者,注意:1|2|3 st这样不推荐,因为mysql会假定你的意思是匹配'1'或'2'或'3st'除非你把字符|括在一个集合中,如:[1|2|3]st
字符也可以否定,加^则意味着除此之外,如[^123]st意思是匹配除了1st、2st、3st之外的数据。

4.匹配范围

正则表达式可以使用-匹配一个范围,如[0-9]匹配任意数字,无论是1还是11还是10111,[a-z]匹配任意小写字母。

5.匹配特殊字符
如上,./-/[]等是正则表达式的特殊字符,如果要匹配含有这些字符的数据,就需要使用转义(escaping),//。如//.表示查找'.'。//也用来引用元字符(具有特殊含义的字符),如:
//f:表示换页
//n:表示换行
//r:表示回车
//t:表示制表
//v:表示纵向制表
Notes:

如果匹配反斜杠本身()则需要使用///
为什么Mysql使用两个反斜杠(/),而很多语言使用一个反斜杠转义呢,因为mysql自己解释一个,正则表达式库解释一个。

6.匹配字符串

bitsCN.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

PHP's big data structure processing skills PHP's big data structure processing skills May 08, 2024 am 10:24 AM

Big data structure processing skills: Chunking: Break down the data set and process it in chunks to reduce memory consumption. Generator: Generate data items one by one without loading the entire data set, suitable for unlimited data sets. Streaming: Read files or query results line by line, suitable for large files or remote data. External storage: For very large data sets, store the data in a database or NoSQL.

How to use MySQL backup and restore in PHP? How to use MySQL backup and restore in PHP? Jun 03, 2024 pm 12:19 PM

Backing up and restoring a MySQL database in PHP can be achieved by following these steps: Back up the database: Use the mysqldump command to dump the database into a SQL file. Restore database: Use the mysql command to restore the database from SQL files.

How to optimize MySQL query performance in PHP? How to optimize MySQL query performance in PHP? Jun 03, 2024 pm 08:11 PM

MySQL query performance can be optimized by building indexes that reduce lookup time from linear complexity to logarithmic complexity. Use PreparedStatements to prevent SQL injection and improve query performance. Limit query results and reduce the amount of data processed by the server. Optimize join queries, including using appropriate join types, creating indexes, and considering using subqueries. Analyze queries to identify bottlenecks; use caching to reduce database load; optimize PHP code to minimize overhead.

How to insert data into a MySQL table using PHP? How to insert data into a MySQL table using PHP? Jun 02, 2024 pm 02:26 PM

How to insert data into MySQL table? Connect to the database: Use mysqli to establish a connection to the database. Prepare the SQL query: Write an INSERT statement to specify the columns and values ​​to be inserted. Execute query: Use the query() method to execute the insertion query. If successful, a confirmation message will be output.

How to create a MySQL table using PHP? How to create a MySQL table using PHP? Jun 04, 2024 pm 01:57 PM

Creating a MySQL table using PHP requires the following steps: Connect to the database. Create the database if it does not exist. Select a database. Create table. Execute the query. Close the connection.

How to use MySQL stored procedures in PHP? How to use MySQL stored procedures in PHP? Jun 02, 2024 pm 02:13 PM

To use MySQL stored procedures in PHP: Use PDO or the MySQLi extension to connect to a MySQL database. Prepare the statement to call the stored procedure. Execute the stored procedure. Process the result set (if the stored procedure returns results). Close the database connection.

How to fix mysql_native_password not loaded errors on MySQL 8.4 How to fix mysql_native_password not loaded errors on MySQL 8.4 Dec 09, 2024 am 11:42 AM

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the "MySQL Native Password" plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

The difference between oracle database and mysql The difference between oracle database and mysql May 10, 2024 am 01:54 AM

Oracle database and MySQL are both databases based on the relational model, but Oracle is superior in terms of compatibility, scalability, data types and security; while MySQL focuses on speed and flexibility and is more suitable for small to medium-sized data sets. . ① Oracle provides a wide range of data types, ② provides advanced security features, ③ is suitable for enterprise-level applications; ① MySQL supports NoSQL data types, ② has fewer security measures, and ③ is suitable for small to medium-sized applications.

See all articles