width_bucket (x, bound1, bound2, n)
Query
presto:default> select width_bucket(5,3,4,5) as width;
Risultato
width
-------
6
Dall'input precedente, 3 e 4 sono limiti diversi e restituisce la larghezza della benna come 6.
presto:default> select width_bucket(5,3,4,5) as width;
width
-------
6
Dall'input precedente, 3 e 4 sono limiti diversi e restituisce la larghezza della benna come 6.