I want to show the most viewed entries that have been added in the last 7 days.
I've tried:
SELECT active, date_created, comments, views, URL, title, category, image1
FROM `tbl_news`
WHERE DATE_SUB(curdate(), INTERVAL 1 WEEK) <= `date_created`
ORDER BY `views` DESC LIMIT 10;
But with no success.
The date is in the standard format: 1310824884
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…