Share Share on Facebook Share on Twitter Pinterest Email Write a SQL query to find the last record inserted in the table Solution Select * from (select * from HR.employees order by rownum desc) where rownum<2; 1 2 3 4 5 6 7 8 9 10 Fundamentalsinterview questionsoracle 0 Related Posts Write a program to implement circular linked list Write a program to reverse the linked list Find last Nth node from singly linked list using single iteration Write A Comment Cancel Reply Save my name, email, and website in this browser for the next time I comment.