Funzione matematica width_bucket (x, bins)
Query
presto:default> select width_bucket(6,array[1,2,3]) as width;
Risultato
width
-------
3
Qui, il valore massimo dell'array è impostato come larghezza del bucket.
presto:default> select width_bucket(6,array[1,2,3]) as width;
width
-------
3
Qui, il valore massimo dell'array è impostato come larghezza del bucket.