gpt4 book ai didi

sql - postgresql 表中值的分布

转载 作者:行者123 更新时间:2023-11-29 12:45:53 26 4
gpt4 key购买 nike

我有一个像这样的 Postgresql 表

user_name | product_name       
----------+-------------
tom | candle
bill | candle
bill | candle
tom | pen
bill | pen

我想知道蜡烛销量的分布情况,即有多少人只买了一根蜡烛,有多少人买了两根蜡烛,等等。

我曾尝试使用 Postgreql 窗口函数,但我的头很痛:) http://www.postgresql.org/docs/9.3/static/tutorial-window.html

若弗鲁瓦

最佳答案

SQL Fiddle

select quantity, count(*)
from (
select user_name, count(*) as quantity
from t
where product_name = 'candle'
group by user_name
) s
group by quantity
order by quantity

关于sql - postgresql 表中值的分布,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23371085/

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