如何通过JOIN从另一个表中查找不存在的数据?

How to find non-existing data from another Table by JOIN?(如何通过JOIN从另一个表中查找不存在的数据?)
本文介绍了如何通过JOIN从另一个表中查找不存在的数据?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有两个表 TABLE1,它看起来像:

I have two tables TABLE1 which looks like:

id      name     address
1       mm     123
2       nn     143

和 TABLE2 w/c 看起来像:

and TABLE2 w/c looks like:

name     age
mm      6
oo      9

我想通过比较 TABLE1TABLE2 来获取不存在的名称.

I want to get the non existing names by comparing the TABLE1 with the TABLE2.

所以基本上,我必须得到第二行,w/c 有一个在 TABLE2 中不存在的 NN 名称,输出应如下所示:

So basically, I have to get the 2nd row, w/c has a NN name that doesn't exist in the TABLE2, the output should look like this:

id      name     address
2      nn      143

我试过了,但没有用:

SELECt  w.* FROM TABLE1 W INNER JOIN TABLE2 V
  ON W.NAME <> V.NAME

它仍在获取现有记录.

推荐答案

INNER JOIN 在这里没有帮助.

解决这个问题的一种方法是使用LEFT JOIN:

One way to solve this is by using a LEFT JOIN:

SELECT w.* 
FROM TABLE1 W 
LEFT JOIN TABLE2 V ON W.name = V.name
WHERE ISNULL(V.name);

这篇关于如何通过JOIN从另一个表中查找不存在的数据?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
Hibernate reactive No Vert.x context active in aws rds(AWS RDS中的休眠反应性非Vert.x上下文处于活动状态)
Bulk insert with mysql2 and NodeJs throws 500(使用mysql2和NodeJS的大容量插入抛出500)
Flask + PyMySQL giving error no attribute #39;settimeout#39;(FlASK+PyMySQL给出错误,没有属性#39;setTimeout#39;)
auto_increment column for a group of rows?(一组行的AUTO_INCREMENT列?)
Sort by ID DESC(按ID代码排序)