进行 mySQL 查询来获取尚未售出的产品?
使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
LEFT OUTER JOIN
You can use a
LEFT OUTER JOIN
for this: