Click to See Complete Forum and Search --> : How to get the 5 latest submissions from a database?


Christophe27
02-15-2010, 07:23 AM
Hi,

Does anybody know how to get the (for example) 5 latest results from a database.

I'd like to create a widget with the 5 latest photo uploads ;)

Thanks!

Christophe

yamaharuss
02-15-2010, 08:39 AM
You can select the TOP 5 and sort by date field

NogDog
02-15-2010, 09:04 AM
SELECT . . . ORDER BY date_time_column DESC LIMIT 5

Christophe27
02-16-2010, 07:14 AM
Thanks! I'll do that. Didn't know the syntax ;)