Probably need to add a date field in there...
SELECT column1, column2 FROM table WHERE DATE_SUB(NOW(), INTERVAL 7 DAY) <= date_column
Actually, this same query is listed on the MySQL manual page for Date and Time Functions (it's the very first sample query of the entire page).