进行 mySQL 查询来获取尚未售出的产品?

发布于 2024-09-03 11:45:20 字数 137 浏览 3 评论 0原文

使用 openbravoPOS,我获得了所有产品、门票库存等的 mySQL 数据库。

产品位于一个表中,门票位于另一个表中,因此进行查询以获取所有已售产品(因此位于门票行中)很简单。

如何进行查询以提供不属于任何票务热线的产品?

Using openbravoPOS i got a mySQL database of all my producs tickets stock etc.

Products are in one table and the tickets are in another, so to make a query that get me all the products that are sold (and therefore are in ticketlines) are simple.

How do I make a query that gives me the products that are not i any ticketlines?

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

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

发布评论

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

评论(1

预谋 2024-09-10 11:45:20

您可以使用 LEFT OUTER JOIN

select p.*
from products p
left outer join tickets t on p.ProductID = t.ProductID
where t.ProductID is null

You can use a LEFT OUTER JOIN for this:

select p.*
from products p
left outer join tickets t on p.ProductID = t.ProductID
where t.ProductID is null
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文