Skip to content

NOT IN

语法说明

NOT IN 运算符可以在 WHERE 语句中指定特定的多个值,本质上是多个 XOR 条件的简写。

语法结构

> SELECT column1, column2, ...
FROM table_name
WHERE column_name NOT IN (value1, value2, ...);

示例

create table t2(a int,b varchar(5),c float, d date, e datetime);
insert into t2 values(1,'a',1.001,'2022-02-08','2022-02-08 12:00:00');
insert into t2 values(2,'b',2.001,'2022-02-09','2022-02-09 12:00:00');
insert into t2 values(1,'c',3.001,'2022-02-10','2022-02-10 12:00:00');
insert into t2 values(4,'d',4.001,'2022-02-11','2022-02-11 12:00:00');

mysql> select * from t2 where a not in (2,4);
+------+------+-------+------------+---------------------+
| a    | b    | c     | d          | e                   |
+------+------+-------+------------+---------------------+
|    1 | a    | 1.001 | 2022-02-08 | 2022-02-08 12:00:00 |
|    1 | c    | 3.001 | 2022-02-10 | 2022-02-10 12:00:00 |
+------+------+-------+------------+---------------------+
2 rows in set (0.05 sec)

mysql> select * from t2 where b not in ('e',"f");
+------+------+-------+------------+---------------------+
| a    | b    | c     | d          | e                   |
+------+------+-------+------------+---------------------+
|    1 | a    | 1.001 | 2022-02-08 | 2022-02-08 12:00:00 |
|    2 | b    | 2.001 | 2022-02-09 | 2022-02-09 12:00:00 |
|    1 | c    | 3.001 | 2022-02-10 | 2022-02-10 12:00:00 |
|    4 | d    | 4.001 | 2022-02-11 | 2022-02-11 12:00:00 |
+------+------+-------+------------+---------------------+
4 rows in set (0.09 sec)

mysql> select * from t2 where e not in ('2022-02-09 12:00:00') and a in (4,5);
+------+------+-------+------------+---------------------+
| a    | b    | c     | d          | e                   |
+------+------+-------+------------+---------------------+
|    4 | d    | 4.001 | 2022-02-11 | 2022-02-11 12:00:00 |
+------+------+-------+------------+---------------------+
1 row in set (0.05 sec)

限制

  • 目前只支持 NOT IN 左侧的常量列表。
  • NOT IN 左边只能有单列,不能是多列。
  • NULL 值不能出现在 NOT IN 右侧的列表中。