Write a query to get last 10 records from the table.
Answer Posted / chandrakishan
select * from emp where rownum>=
(select count(*)-10 from emp);
| Is This Answer Correct ? | 1 Yes | 3 No |
Post New Answer View All Answers
Is it possible to create the following trigger: before or after update trigger for each row?
what is error ora-03113: end-of-file on communication channel?
How do I create a sql database?
What is schema in sql example?
What are aggregate functions in sql?
What are the basic techniques of indexing?
What is rename in sql?
What is the purpose of using pl/sql?
What is an exception in pl/sql?
How can I change database name in sql?
How to return an array from java to pl/sql?
What are literals in sql server?
what are the different type of sql's statements ? : Sql dba
What will you get by the cursor attribute sql%found?
How can we store rows in PL/SQL using array?