Write a query to get last 10 records from the table.
Answer Posted / swastik
SELECT ROWNUM, E1.*
FROM
(
SELECT * FROM Emp
ORDER BY ROWNUM DESC
)E1
WHERE ROWNUM <= 10
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
What is compilation error in pl sql?
Explain aggregate functions are available there in sql?
What is the difference between pl and sql?
Can you skip header records while loading? : aql loader
Can unique keys be null?
What are sql functions? Describe in brief different types of sql functions?
What is query syntax?
What is sql key?
how to dump a table to a file with 'mysqldump'? : Sql dba
What is interval partition?
Why do we need sharding?
Is clustered index a primary key?
Is like operator in sql case sensitive?
What does inner join mean?
what are the nonstandard string types? : Sql dba