参加すると、次のようなことができます:
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;
私はMySQLの専門家ではないので、構文を少し調整する必要がある場合はお詫びします。
更新: OPは、この非常に優れたソリューション も見つけました。 。