View Single Post

   
  #2 (permalink)  
Old 04-29-2008, 09:27 PM
Erick T. Barkhuis
 
Posts: n/a
Default 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
Reply With Quote