如何获取mysql中缺少行的表

前端之家收集整理的这篇文章主要介绍了如何获取mysql中缺少行的表前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我有两个mysql

TABLEA

colA1   colA2
1       whatever
2       whatever
3       whatever
4       whatever
5       whatever
6       whatever

第二个表基本上是从tableA派生的,但删除了一些行

tableB的

colB1    colB2
1       whatever
2       whatever
4       whatever
6       whatever

如何编写查询以从上面的两个表中获取缺失行的表

colC1   colC2
3      whatever
5      whatever
最佳答案
SELECT t1.*
FROM TableA t1 LEFT JOIN
     TableB t2 ON t1.ID = t2.ID
WHERE t2.ID IS NULL
原文链接:https://www.f2er.com/mysql/433329.html

猜你在找的MySQL相关文章