S připojením můžete udělat něco takového:
select * from table a
inner join (
select id,
max(
if(`date` <= __LOWERLIMIT__ ,`date`, 0)
) as min_date,
min(
if(`date` >= __UPPERLIMIT__ , `date`, UNIX_TIMESTAMP())
) as max_date
from table
where id = __ID__
group by id
) range on
range.id = a.id and
a.`date` between min_date and max_date;
Nejsem odborník na MySQL, takže se omlouvám, pokud je potřeba trochu doladit syntaxi.
Aktualizace: OP také našel toto velmi pěkné řešení .