如何找到两个MySQL表之间的缺失值?
要查找两个MySQL表之间的缺失值,请使用NOTIN。让我们首先创建一个表-
create table DemoTable1(Value int);
使用插入命令在表中插入一些记录-
insert into DemoTable1 values(1); insert into DemoTable1 values(2); insert into DemoTable1 values(5); insert into DemoTable1 values(6); insert into DemoTable1 values(8);
使用select语句显示表中的所有记录-
select *from DemoTable1;
这将产生以下输出-
+-------+ | Value | +-------+ | 1 | | 2 | | 5 | | 6 | | 8 | +-------+ 5 rows in set (0.00 sec)
以下是创建第二个表的查询-
create table DemoTable2(Value int);
使用插入命令在表中插入一些记录-
insert into DemoTable2 values(1); insert into DemoTable2 values(2); insert into DemoTable2 values(3); insert into DemoTable2 values(4);
使用select语句显示表中的所有记录-
select *from DemoTable2;
这将产生以下输出-
+-------+ | Value | +-------+ | 1 | | 2 | | 3 | | 4 | +-------+ 4 rows in set (0.00 sec)
以下是查找两个MySQL表之间的缺失值的查询-
select Value from DemoTable1 where Value not in(select Value from DemoTable2);
这将产生以下输出-
+-------+ | Value | +-------+ | 5 | | 6 | | 8 | +-------+ 3 rows in set (0.07 sec)
热门推荐
10 新年门口花束祝福语简短
11 盘锦结婚祝福语大全简短
12 父母生日祝福语 简短独特
13 家庭恩爱祝福语简短英文
14 高考俄语祝福语大全简短
15 虎年祝福语 诗句唯美简短
16 生日婚礼祝福语简短精辟
17 虎年喝酒拜年祝福语简短
18 教师闺蜜祝福语简短