Subject Re: [firebird-support] Last inserted.updated rows...
Author Anderson Farias
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?

select first 5 * from your_table
order by st_lastupdate desc

Firebird 2 intruduces a new (perhaps preferable) way for doing this, by
using ROWS, if you're using FB 2, take a look at release notes for details.


Regards,
Anderson