Eiolon Posted September 16, 2008 Share Posted September 16, 2008 I want to the most recent entries in a table but I want to have a cutoff date of 2 weeks. Entries that are more than 2 weeks old won't be listed. All entries are stored with a mysql datetime column: record_added datetime not null default '0000-00-00 00:00:00' Any idea on how I could do this? Thanks! Link to comment https://forums.phpfreaks.com/topic/124543-show-most-recent-entries/ Share on other sites More sharing options...
DarkWater Posted September 16, 2008 Share Posted September 16, 2008 #SQL SELECT * FROM your_table WHERE record_added > (DATE_SUB(NOW(), INTERVAL 14 DAYS)) LIMIT 20; Link to comment https://forums.phpfreaks.com/topic/124543-show-most-recent-entries/#findComment-643190 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.