获取多对多表中未映射记录的计数

发布于 2025-01-11 09:39:10 字数 1237 浏览 0 评论 0原文

我有 3 个表,例如

Product

ProductIDProductDetails
1...
2...
3...

Vendor

VendorIDVendorDetails
1...
2...
3...

ProductVendors

ProductIDVendorID
11
21
12
22
32

我如何查找映射到特定供应商的产品数量。

我尝试过:

SELECT
    COUNT(pr.id) AS product_count
FROM
    products pr
LEFT JOIN vendor_product_map vp ON
    pr.id = vp.product
LEFT JOIN vendors vv ON
    vp.vendor = vv.id
WHERE
    vv.id = 3 AND vp.vendor IS NULL

但这似乎不对。任何帮助表示赞赏

I have 3 tables as such

Product

ProductIDProductDetails
1...
2...
3...

Vendor

VendorIDVendorDetails
1...
2...
3...

ProductVendors

ProductIDVendorID
11
21
12
22
32

How would I go about finding the number of products that are not mapped to a specific vendor.

I tried:

SELECT
    COUNT(pr.id) AS product_count
FROM
    products pr
LEFT JOIN vendor_product_map vp ON
    pr.id = vp.product
LEFT JOIN vendors vv ON
    vp.vendor = vv.id
WHERE
    vv.id = 3 AND vp.vendor IS NULL

but that doesn't seem right. Any help is appreciated

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁月静好 2025-01-18 09:39:10

一个简单的 not contains 查询就足够了:

select *
from products
where not exists (
    select *
    from vendor_product_map
    where vendor_product_map.product = product.id
    and vendor_product_map.vendor = 12345678
)

A simple not exists query should be sufficient:

select *
from products
where not exists (
    select *
    from vendor_product_map
    where vendor_product_map.product = product.id
    and vendor_product_map.vendor = 12345678
)
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文