Sie können so etwas mit einem Join machen:
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;
Ich bin kein MySQL-Experte, also entschuldigen Sie, wenn ein wenig Syntax-Optimierung erforderlich ist.
Aktualisierung: das OP hat auch diese sehr schöne Lösung gefunden .