在数据库中查询不在MySQL表中的值?
为此,可以将UNIONALL与WHERENOTEXISTS一起使用,并实现NOTIN来忽略表中已经存在的值。将SELECT与UNIONALL一起使用可添加表中尚未存在的值。
让我们首先创建一个表-
mysql> create table DemoTable1918 ( Value int NOT NULL AUTO_INCREMENT PRIMARY KEY );
使用插入命令在表中插入一些记录-
mysql> insert into DemoTable1918 values(); mysql> insert into DemoTable1918 values(); mysql> insert into DemoTable1918 values(); mysql> insert into DemoTable1918 values(); mysql> insert into DemoTable1918 values();
使用select语句显示表中的所有记录-
mysql> select * from DemoTable1918;
这将产生以下输出-
+-------+ | Value | +-------+ | 1 | | 2 | | 3 | | 4 | | 5 | +-------+ 5 rows in set (0.00 sec)
这是使用UNIONALL查询不在表中的SELECT值的查询-
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)