1. Introduction When using the where clause to filter query data in MySQL, it is often necessary to meet multiple filtering conditions at the same time, or to meet one of the multiple filtering conditions. At this time, we can use operators to connect the where clauses. The functions of several operators:
2. Main textFirst, prepare a User table. The DDL and table data are as follows and can be copied and used directly. SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for user -- ---------------------------- DROP TABLE IF EXISTS `user`; CREATE TABLE `user` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'Primary key', `name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'User name', `age` int(11) NOT NULL COMMENT 'Age', `sex` smallint(6) NOT NULL COMMENT 'Gender', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 8 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of user -- ---------------------------- INSERT INTO `user` VALUES (1, '李子8', 18, 1); INSERT INTO `user` VALUES (2, '张三', 22, 1); INSERT INTO `user` VALUES (3, '李四', 38, 1); INSERT INTO `user` VALUES (4, '王五', 25, 1); INSERT INTO `user` VALUES (5, '六麻子', 13, 0); INSERT INTO `user` VALUES (6, '田七', 37, 1); INSERT INTO `user` VALUES (7, 'Thank you', 18, 0); SET FOREIGN_KEY_CHECKS = 1; The initial order of the data is as follows: mysql> select * from user; +----+--------+-----+-----+ | id | name | age | sex | +----+--------+-----+-----+ | 1 | Plum 8 | 18 | 1 | | 2 | Zhang San | 22 | 1 | | 3 | Li Si | 38 | 1 | | 4 | Wang Wu | 25 | 1 | | 5 | Liu Mazi | 13 | 0 | | 6 | Tianqi | 37 | 1 | | 7 | Thank you | 18 | 0 | +----+--------+-----+-----+ 7 rows in set (0.00 sec) 2.1 and Operator When the query needs to satisfy the conditions in the where clause at the same time, you can use the and operator. The and conditions are in an and relationship. need: mysql> select * from user where age = 18 and sex = 1; result:
At this point, you can see that only users who meet both age=18 and sex=1 are queried. By analogy, multiple ands can exist at the same time. For example, if you need to search for **name=李子柒** based on the above, you only need to follow it with another and operator. mysql> select * from user where age = 18 and sex =1 and name = '李子柒'; Empty set (0.00 sec) 2.2 or Operator Different from and, or only needs to satisfy one of the multiple where conditions, not all of them. The conditions are in an or relationship. need: mysql> select * from user where age = 18 or sex = 1; result:
At this point, you can see that all users who meet age=18 or sex=1 are found. The same or operator can also be applied to multiple where clauses at the same time. 2.3 in Operator The in operator is used to specify the query scope of the where clause. It means inclusion, and it can be implemented using multiple or operators. need: mysql> select * from user where name = '张三' or name = '李四' or name = '王五'; +----+------+-----+-----+ | id | name | age | sex | +----+------+-----+-----+ | 2 | Zhang San | 22 | 1 | | 3 | Li Si | 38 | 1 | | 4 | Wang Wu | 25 | 1 | +----+------+-----+-----+ 3 rows in set (0.00 sec) Using the in Operator mysql> select * from user where name in ('张三', '李四', '王五'); +----+------+-----+-----+ | id | name | age | sex | +----+------+-----+-----+ | 2 | Zhang San | 22 | 1 | | 3 | Li Si | 38 | 1 | | 4 | Wang Wu | 25 | 1 | +----+------+-----+-----+ 3 rows in set (0.00 sec) The above requirements can be achieved by using the or operator and the in operator, but the in operator obviously makes the SQL statement concise. 2.4 not OperatorWhen we need to query whether a value is not within a certain range or does not exist, we can use the not operator. The not operator is not used alone, it is often used with the in operator, like operator, between and, exists, etc. not in mysql> select * from user where name not in ('张三', '李四', '王五'); +----+--------+-----+-----+ | id | name | age | sex | +----+--------+-----+-----+ | 1 | Plum 8 | 18 | 1 | | 5 | Liu Mazi | 13 | 0 | | 6 | Tianqi | 37 | 1 | | 7 | Thank you | 18 | 0 | +----+--------+-----+-----+ 4 rows in set (0.00 sec) not like mysql> select * from user where name not like '李子%'; +----+--------+-----+-----+ | id | name | age | sex | +----+--------+-----+-----+ | 2 | Zhang San | 22 | 1 | | 3 | Li Si | 38 | 1 | | 4 | Wang Wu | 25 | 1 | | 5 | Liu Mazi | 13 | 0 | | 6 | Tianqi | 37 | 1 | | 7 | Thank you | 18 | 0 | +----+--------+-----+-----+ 6 rows in set (0.00 sec) not between and mysql> select * from user where age not between 20 and 30; +----+--------+-----+-----+ | id | name | age | sex | +----+--------+-----+-----+ | 1 | Plum 8 | 18 | 1 | | 3 | Li Si | 38 | 1 | | 5 | Liu Mazi | 13 | 0 | | 6 | Tianqi | 37 | 1 | | 7 | Thank you | 18 | 0 | +----+--------+-----+-----+ 5 rows in set (0.00 sec) not exists The not exists table is used in the same way as exists and is used to determine whether the result of the current where clause should be returned. not exists and exists act on a subquery and return true and false to the parent; SELECT ... FROM table WHERE EXISTS (subquery) SELECT ... FROM table WHERE NOT EXISTS (subquery) To demonstrate the effect, we create a simple order table, whose table creation statement and data are as follows: SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for order -- ---------------------------- DROP TABLE IF EXISTS `order`; CREATE TABLE `order` ( `id` bigint(20) NOT NULL AUTO_INCREMENT COMMENT 'Primary key', `number` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT 'Order number', `user_id` bigint(20) NULL DEFAULT NULL COMMENT 'user id', `price` decimal(10, 2) NULL DEFAULT NULL COMMENT 'amount', `create_date` datetime(0) NULL DEFAULT NULL COMMENT 'Creation date', PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of order -- ---------------------------- INSERT INTO `order` VALUES (1, 'DD-20211110-000001', 1, 250.00, '2021-11-10 22:37:19'); SET FOREIGN_KEY_CHECKS = 1; Note: Since order is a MySQL keyword, it is not recommended to name the table directly order when creating it. I name it order here to explain how to solve this problem. mysql> select * from `order`; +----+--------------------+---------+--------+---------------------+ | id | number | user_id | price | create_date | +----+--------------------+---------+--------+---------------------+ | 1 | DD-20211110-000001 | 1 | 250.00 | 2021-11-10 22:37:19 | +----+--------------------+---------+--------+---------------------+ 1 row in set (0.00 sec) If you look carefully, you can find that order is modified with `, so that MySQL will not parse it as a keyword. If you don't add MySQL, an exception will be thrown. Back to the topic, we now use exists to query the requirements: mysql> select * from user where exists(select id from `order` where user_id = user.id); +----+--------+-----+-----+ | id | name | age | sex | +----+--------+-----+-----+ | 1 | Plum 8 | 18 | 1 | +----+--------+-----+-----+ 1 row in set (0.00 sec) At this time, if we want to query the user information who has not placed an order, we only need to use not exists. mysql> select * from user where not exists (select id from `order` where user_id = user.id); +----+--------+-----+-----+ | id | name | age | sex | +----+--------+-----+-----+ | 2 | Zhang San | 22 | 1 | | 3 | Li Si | 38 | 1 | | 4 | Wang Wu | 25 | 1 | | 5 | Liu Mazi | 13 | 0 | | 6 | Tianqi | 37 | 1 | | 7 | Thank you | 18 | 0 | +----+--------+-----+-----+ 6 rows in set (0.00 sec) 2.5 Operator Order Several operators are mentioned above, but in many cases multiple operators need to be used together. At this time, we need to pay attention to the order of the operators. For example, the following requirements: mysql> select * from user where age > 20 or sex = 1 and name != '张三'; +----+--------+-----+-----+ | id | name | age | sex | +----+--------+-----+-----+ | 1 | Plum 8 | 18 | 1 | | 2 | Zhang San | 22 | 1 | | 3 | Li Si | 38 | 1 | | 4 | Wang Wu | 25 | 1 | | 6 | Tianqi | 37 | 1 | +----+--------+-----+-----+ 5 rows in set (0.00 sec) At this time, it is found that the query return results actually include Zhang San. This is because and has a higher priority than or. The SQL parser at the bottom of MySQL parses the above SQL into sex = 1 and name != 'Zhang San' or age > 20; Zhang San is also found out because age > 20. To solve this problem, just use parentheses to enclose the or statement. mysql> select * from user where (age > 20 or sex = 1) and name != '张三'; +----+--------+-----+-----+ | id | name | age | sex | +----+--------+-----+-----+ | 1 | Plum 8 | 18 | 1 | | 3 | Li Si | 38 | 1 | | 4 | Wang Wu | 25 | 1 | | 6 | Tianqi | 37 | 1 | +----+--------+-----+-----+ 4 rows in set (0.00 sec) At this time, Zhang San is no longer included in the returned data of the query. Therefore, when writing SQL, we can develop the habit of using brackets. By grouping operators in brackets, we can avoid the risk of errors caused by using the default order. This concludes this article on the specific use of MySQL operators (and, or, in, not). For more relevant MySQL operator content, please search 123WORDPRESS.COM's previous articles or continue to browse the following related articles. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: A brief discussion on the placement of script in HTML
>>: Solve the problem of OpenLayers 3 loading vector map source
Join query A join query refers to a matching quer...
This article example shares the specific code of ...
Which historical version can the current transact...
Hello everyone, I am Qiufeng. Recently, WeChat ha...
The so-called three-column adaptive layout means ...
MySQL string concatenation, interception, replace...
A considerable number of websites use digital pagi...
[Problem description] Our production environment ...
When you log in to MySQL remotely, the account yo...
Docker Learning https://www.cnblogs.com/poloyy/p/...
The element ui table does not have a built-in dra...
Preface As we all know, by default, the MySQL ins...
Preview knowledge points. Animation Frames Backgr...
1. MySQL 1.1 MySQL installation mysql-5.5.27-winx...
1. Avoid declaring the page as XML type . The pag...