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 ( SELECT * FROM table_name ORDER BY sortable_column DESC ) WHERE ROWNUM = 1;