MySQL2008. 11. 6. 09:40

4.0.x, 4.1.x, 5.0.x 버전 (거의 모든 버전)
select * from tb1 WHERE date_sub(now(),interval '1' month) < date;

4.1.x 이상 버전에서는
select * from tb1 where datediff(now(),date) < 31;

Posted by 아마데우스