雪花分组按数字

huangapple go评论96阅读模式
英文:

Snowflake Grouping by Numbers

问题

我有一个数据库,想要制作类似以下的东西:

金额 数量
$ 0 - $500 3
$501 - $1999 10
$2000 - $2999 23

获取类似这样的结果最简单的方法是什么?我有一个购买ID和购买金额的列表。我考虑使用CASE语句来处理处于这些金额范围内的购买,但ID的计数结果与预期不符。

英文:

I have a database and I am wanting to produce something similar to the below:

Dollar Amount Count
$ 0 - $500 3
$501 - $1999 10
$2000 - $2999 23

What is the easiest way to get something similar to that? I have a list of purchase IDs and dollar amount of purchase. My thought was using cases when purchase between those amounts but the count of IDs isn't working as expected.

答案1

得分: 1

以下是您提供的代码的翻译部分:

我们可以首先定义一个任意桶的数组,然后查找适合其中的行:

  1. with buckets as (
  2. select value, lead(value) over(order by value) next_value
  3. from table(flatten([0,500,1000,2000]))
  4. qualify next_value is not null
  5. )
  6. select value||'-'||next_value range, count_if(c_acctbal>=value and c_acctbal<next_value) c
  7. from snowflake_sample_data.tpch_sf1.customer
  8. join buckets
  9. group by 1
  10. order by any_value(value);
英文:

We can start by defining an array of arbitrary buckets, and then looking for rows that fit within:

  1. with buckets as (
  2. select value, lead(value) over(order by value) next_value
  3. from table(flatten([0,500,1000,2000]))
  4. qualify next_value is not null
  5. )
  6. select value||&#39;-&#39;||next_value range, count_if(c_acctbal&gt;=value and c_acctbal&lt;next_value) c
  7. from snowflake_sample_data.tpch_sf1.customer
  8. join buckets
  9. group by 1
  10. order by any_value(value);

雪花分组按数字

答案2

得分: 0

下面是代码的翻译部分:

  1. 一个相当简单的方法是使用CASE语句,规则按顺序评估,因此您只需要检查递增的切除值。
  2. with data as (
  3. select * from values
  4. (1),(2),(499),
  5. (501),(1000),(1499),
  6. (2014)
  7. )
  8. select
  9. case
  10. when column1 <= 500 then '$ 0 - $500'
  11. when column1 <= 1999 then '$501 - $1999'
  12. when column1 <= 2999 then '$2000 - $2999'
  13. end as "Dollar Amount"
  14. ,count(*) as "Count"
  15. from data
  16. group by 1;

给出的结果为:

Dollar Amount Count
$ 0 - $500 3
$501 - $1999 3
$2000 - $2999 1
  1. <details>
  2. <summary>英文:</summary>
  3. A rather simple method is to use a CASE statement, the rules are evaluated in order, so you just need to check increasing cutout values.

with data as (
select * from values
(1),(2),(499),
(501),(1000),(1499),
(2014)
)
select
case
when column1 <= 500 then '$ 0 - $500'
when column1 <= 1999 then '$501 - $1999'
when column1 <= 2999 then '$$2000 - $2999'
end as "Dollar Amount"
,count(*) as "Count"
from data
group by 1;

  1. gives:
  2. Dollar Amount |Count
  3. --|--|--
  4. $ 0 - $500 |3
  5. $501 - $1999 |3
  6. $$2000 - $2999 |1
  7. </details>

huangapple
  • 本文由 发表于 2023年2月24日 10:55:08
  • 转载请务必保留本文链接:https://go.coder-hub.com/75552233.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定