Write a query to get last 10 records from the table.
Answer Posted / l meher
select * from emp minus select * from emp where rownum<=
(select count(*)-10 from emp);
| Is This Answer Correct ? | 8 Yes | 3 No |
Post New Answer View All Answers
What is the purpose of normalization?
Is it mandatory for the primary key to be given a value when a new record is inserted?
What is the difference between a primary key and a clustered index?
How is data stored in sql?
Why schema is used in sql?
How do I clear the screen in sql plus?
explain advantages of myisam over innodb? : Sql dba
What is the main difference between sql and pl/sql?
Can you join views in sql?
what are set operators in sql? : Sql dba
What are the events on which a database trigger can be based?
Can you inner join the same table?
what is the difference between $message and $$message? : Sql dba
Why functions are used in sql?
what is self join and what is the requirement of self join? : Sql dba