Google News
logo
Oracle - Interview Questions
How can we view last record added to a table?
Last record can be added to a table and this can be done by :
 
Select * from (select * from employees order by rownum desc) where rownum<2;
Advertisement