3 měsíce před dneškem:
select * from table where timestamp >= now()-interval 3 month;
Začněte prvním měsícem:
select * from table where timestamp >= last_day(now()) + interval 1 day - interval 3 month;
3 měsíce před dneškem:
select * from table where timestamp >= now()-interval 3 month;
Začněte prvním měsícem:
select * from table where timestamp >= last_day(now()) + interval 1 day - interval 3 month;