0 votes
in Oracle by
How can we view last record added to a table in Oracle?

1 Answer

0 votes
by

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;

Related questions

0 votes
asked Mar 18, 2023 in Oracle by GeorgeBell
0 votes
asked Jan 19 in Oracle by AdilsonLima
...