gpt4 book ai didi

mysql - 大多数产品如何获得用户

转载 作者:行者123 更新时间:2023-11-30 22:13:16 24 4
gpt4 key购买 nike

我有 3 个表:

发票:

invoice_id | user_name | user_id | cost | shop_Id 

发票产品:

id | invoice_id | user_id | product_id | quantity

产品:

product_id | product_name | description

我需要 shop_id = 1 结果且客户有多种产品的前 5 位客户:

invoice_id | user_name | user_id | product_name | product_description

最佳答案

您可以按照以下步骤操作 - 加入表格、计算产品数量、按数量排序并使用 LIMIT :

SELECT i.user_name,count(p.product_id) as cnt_products 
FROM invoice i
JOIN invoice_products ip
ON(i.invoice_id = ip.invoice_id)
JOIN product p
ON(p.product_id = ip.product_id)
WHERE i.shop_id = 1
GROUP BY i.user_name
ORDER BY cnt_products DESC
LIMIT 5

关于mysql - 大多数产品如何获得用户,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39314516/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com