MySQL“不在"询问

MySQL quot;NOT INquot; query(MySQL“不在询问)
本文介绍了MySQL“不在"询问的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想运行一个简单的查询来抛出 Table1 的所有行,其中主列值不存在于另一个表 (Table2) 的列中.

I wanted to run a simple query to throw up all the rows of Table1 where a principal column value is not present in a column in another table (Table2).

我尝试使用:

SELECT * FROM Table1 WHERE Table1.principal NOT IN Table2.principal

这反而会引发语法错误.谷歌搜索把我带到论坛,那里有人说 MySQL 不支持 NOT IN 并且需要使用一些非常复杂的东西.这是真的?还是我犯了一个可怕的错误?

This is instead throwing a syntax error. Google search led me to forums where people were saying that MySQL does not support NOT IN and something extremely complex needs to be used. Is this true? Or am I making a horrendous mistake?

推荐答案

要使用 IN,必须有一个集合,请改用以下语法:

To use IN, you must have a set, use this syntax instead:

SELECT * FROM Table1 WHERE Table1.principal NOT IN (SELECT principal FROM table2)

这篇关于MySQL“不在"询问的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

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

相关文档推荐

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代码排序)