MySQL: Select rows older than X days

I know it’s simple, but I use it so frequently that I decided to paste it here as a reminder (with example of 14 days):

SELECT * FROM `table` WHERE DATE_SUB(now(), INTERVAL 14 DAY) > `inserted_at`;

Assuming you are selecting agains `inserted_at` field which contains date of row insertion

MySQL: Select rows older than X days