Thread
:
how to get three lowest entries per bin
View Single Post
#
2
(
permalink
)
04-29-2008, 09:27 PM
Erick T. Barkhuis
Posts: n/a
Re: how to get three lowest entries per bin
Greg Hennessy:
> What would ask for to get the largest three values
> in each bin?
select bin
from data
order by bin desc
limit 3
--
Erick
Erick T. Barkhuis