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 dbo in sql?
What are the types of optimization?
what is the difference between where clause and having clause? : Sql dba
What is a heap in sql?
What is the difference between sum and count in sql?
What is interval partition?
What jobs use sql?
What is the use of triggers?
How do I remove sql developer from windows 10?
What is a nested table in word?
How does a self join work?
mention if it is possible to import data directly from t-sql commands without using sql server integration services? If yes, what are the commands? : Transact sql
What is pls_integer in pl sql?
What are the usages of sql?
what is the command used to fetch first 5 characters of the string? : Sql dba