Get suppliers that doesn#39;t belong to a category in another table(获取不属于另一个表中某个类别的供应商)
问题描述
我正在寻找一个查询,我需要在其中显示供应商表中没有类别 1 (Products.CategoryID = 1) 产品的所有供应商.每当我运行它时,它总是会出错.
I'm looking for a query where I need to show all the Suppliers from the Suppliers table that doesn't have products from category 1 (Products.CategoryID = 1). Whenever I run it it always gives an error.
Select SupplierID From Suppliers su
where SupplierID NOT IN
(select distinct SupplierID from Products
where SupplierID in
(select SupplierID from Products where CategoryID=1)
附带问题:如果供应商的产品来自 cat,我如何获得这些结果.6 ?(所以没有来自 cat1 但确实来自 cat6).
Side question: How do I get these results but with suppliers that has products from cat. 6 ? (So none from cat1 but does have from cat6).
推荐答案
与其使用子选择,不如尝试使用基于集合的操作,例如 joins 或 exists.下面是针对您情况的一种选择,尽管有多种方法可以实现您的目标.哪个最好取决于您的数据:
Rather than using sub-selects, try to use set based operations like joins or exists. One option for your situation is below, though there are several ways to achieve what you are looking to do. Which one is best will depend on your data:
select su.SupplierID
From Suppliers as su
where not exists(select null -- The only check here is for a record, so you can select any value and it won't change the functionality
from Products as p
where su.SupplierID = p.SupplierID
and p.CategoryID = 1
)
这篇关于获取不属于另一个表中某个类别的供应商的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:获取不属于另一个表中某个类别的供应商
- 如何将 SonarQube 6.7 从 MySQL 迁移到 postgresql 2022-01-01
- 导入具有可变标题的 Excel 文件 2021-01-01
- 远程 mySQL 连接抛出“无法使用旧的不安全身份验证连接到 MySQL 4.1+"来自 XAMPP 的错误 2022-01-01
- 以一个值为轴心,但将一行上的数据按另一行分组? 2022-01-01
- 使用 Oracle PL/SQL developer 生成测试数据 2021-01-01
- 如何使用 pip 安装 Python MySQLdb 模块? 2021-01-01
- 在SQL中,如何为每个组选择前2行 2021-01-01
- SQL 临时表问题 2022-01-01
- 如何将 Byte[] 插入 SQL Server VARBINARY 列 2021-01-01
- 更改自动增量起始编号? 2021-01-01
