I want to know last five transactions or records from emp
table, from now?
Answer Posted / newuser
select * from (select * from employee order by rowid desc) t
where rownum<= 5;
Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is the purpose of a secondary key?
List different type of expressions with the example.
What do you know by pl/sql cursors?
How does cross join work in sql?
What is difference between sql and oracle?
Is trigger a stored procedure?
How to Execute a Package in PL/SQL.?
How to run sql statements through the web interface?
what is cursor. write example of it. What are the attributes of cursor.
what are the properties and different types of sub-queries? : Sql dba
what is a composite key ? : Sql dba
What is join view in sql?
What are database links used for?
What is the maximum number of triggers, you can apply on a single table?
Can procedure in package be overloaded?