I want to get the last row, which I inserted into a table in an Oracle 11g Express database. How can I do this?
select * from table_name ORDER BY primary_id DESC FETCH FIRST 1 ROWS ONLY;
That's the simplest one without doing sub queries