I need the SQL code to extract the last five items that have been inserted into the ITEMS table (I have a date field into the table)
Thank you.
Pepe-Spain
SELECT * from table ORDER by datefield DESC LIMIT 5