显示MySQL中其他表中没有数据的数据

时间:2018-06-04 14:24:37

标签: mysql

我想显示数据不在其他表中的数据。

enter image description here

1 个答案:

答案 0 :(得分:-1)

使用子查询。

SELECT a.* 
FROM tabel_a a
WHERE a.id NOT IN (SELECT b.id FROM tabel_b b)

输出

id  name
1   aa
2   bb

SQL小提琴:http://sqlfiddle.com/#!9/8d5a32/6/0