maybe:
select *
from person
where age <=
(select age from person order by age limit 1 offset 2);
7.20 msec
assuming it does what you want.
On Tue, 11 Nov 2003, Troels Arvin wrote:
> An example of a quota query could be to get the top-3 youngest people from
> a collection of people. The complicated part is that such a query might
> return more than 3 rows in some tie situations.