Write a query to get last 10 records from the table.
Answer Posted / praveen biradar
select empno from (select empno from emp order by empno
desc) where rownum<=10 order by empno
| Is This Answer Correct ? | 10 Yes | 6 No |
Post New Answer View All Answers
How many types of functions are there in sql?
What are sql indexes?
what is sp_pkeys? : Transact sql
How do you know if a relationship is 2nf?
What is record in pl sql?
How you improve the performance of sql*loader? : aql loader
How can you know that statistics should be updated?
What is a natural join sql?
What is the order of sql select?
What is the use of non clustered index?
Write a query to find the names of users that begin with "um" in sql?
Can we use pl sql in sql server?
what are the differences between char and nchar? : Sql dba
Is there a 64 bit version of ssms?
What is the purpose of design view?