如何通过一条 SQL 查询获取产品及其购买次数?
Buy
有一个外键 product_id
。
因此,除了SELECT * FROM products;
之外,我们还对获取每种产品的购买次数感兴趣。
Buy
has a foreign key product_id
.
So in addition to SELECT * FROM products;
we are interested in getting the number of buys each product has.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
类似这样的事情:
应该可以解决问题。
Something along the lines of:
should do the trick.
连接
子查询
Join
Subquery
这就是我能提供的关于您发布的信息的全部内容。如果上述方法不起作用,两者的表结构都会有很大帮助。
Thats about all I can offer with the info you've posted. Table structure of both would help a ton if the above doesn't work.