In Snowflake, we use the “percentile_cont()” function for calculating the percentiles of the product. This blog enables us to use that function to compute the percentiles of the product.
To calculate the percentiles of the product, we use the “percentile_cont()” function of Snowflake.
select
percentile_cont(0.1) within group(order by unit_price) over () as p1,
percentile_cont(0.2) within group(order by unit_price) over () as p2,
percentile_cont(0.3) within group(order by unit_price) over() as p3,
percentile_cont(0.4) within group(order by unit_price) over () as p4
from products1;
If we want to get those percentiles by category
select distinct category,
percentile_cont(0.2) within group(order by unit_price) over (partition by category) as p20,
percentile_cont(0.4) within group(order by unit_price) over (partition by category) as p40,
percentile_cont(0.6) within group(order by unit_price) over (partition by category) as p60,
percentile_cont(0.8) within group(order by unit_price) over (partition by category) as p80
from products1 order by category.
In the Snowflake, we can calculate the percentiles using the “percentile.cont()” function. We can use that function to compute the percentiles in different cases and using different parameters. I hope this blog is enough for calculating the percentiles.
Snowflake Related Articles
If you have any queries, let us know by commenting below.
Our work-support plans provide precise options as per your project tasks. Whether you are a newbie or an experienced professional seeking assistance in completing project tasks, we are here with the following plans to meet your custom needs:
Name | Dates | |
---|---|---|
Snowflake Training | Nov 19 to Dec 04 | View Details |
Snowflake Training | Nov 23 to Dec 08 | View Details |
Snowflake Training | Nov 26 to Dec 11 | View Details |
Snowflake Training | Nov 30 to Dec 15 | View Details |