Posts by Thalles Domician • 1 point
1 post
-
0
votes1
answer16
viewsA: How to get the percentile of a sum in Postgres?
You can make a subselect within the PERCENTILE_CONT. It would be something like: SELECT percentile_cont(0.25) WITHIN GROUP( ORDER BY chv.soma_chuvas ) FROM (SELECT data_chuva, sum(chuva) as…
postgresqlanswered Thalles Domician 1