Subject Re: Last inserted.updated rows...
Author Thomas
Hi Allysson,

> What is the SQL statement that I need execute to select the last five
rows inserted or updated at firebird database by timestamp field?

you could use:
SELECT FIRST 5 *
FROM STUDENTS
ORDER BY ST_LASTUPDATE DESC

Regards
Thomas