查询数据库中 MySQL 表中不存在的值?
mysqlmysqli database
为此,您可以将 UNION ALL 与 WHERE NOT EXISTS 一起使用,并实现 NOT IN 以忽略表中已有的值。将 SELECT 与 UNION ALL 一起使用以添加表中尚不存在的值。
首先我们创建一个表 −
mysql> create table DemoTable1918 ( Value int NOT NULL AUTO_INCREMENT PRIMARY KEY ); Query OK, 0 rows affected (0.00 sec)
使用 insert 命令在表中插入一些记录 −
mysql> insert into DemoTable1918 values(); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1918 values(); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1918 values(); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1918 values(); Query OK, 1 row affected (0.00 sec) mysql> insert into DemoTable1918 values(); Query OK, 1 row affected (0.00 sec)
使用 select 语句显示表中的所有记录 −
mysql> select * from DemoTable1918;
这将产生以下输出 −
+-------+ | Value | +-------+ | 1 | | 2 | | 3 | | 4 | | 5 | +-------+ 5 rows in set (0.00 sec)
这是使用 UNION ALL 查询表中不存在的值的查询−
mysql> select tbl.Value from ( select 6 as Value union all select 7 union all select 8 ) tbl where not exists ( select 1 from DemoTable1918 tbl1 where tbl1.Value=tbl.Value);
这将产生以下输出 −
+-------+ | Value | +-------+ | 6 | | 7 | | 8 | +-------+ 3 rows in set (0.00 sec)