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 lookup table in sql?
Can unique keys be null?
Explain the uses of database trigger.
What is the process of debugging?
What is a join?
Why we use cross join?
What is the purpose of a secondary key?
What are the types of index in sql?
How do we accept inputs from user during runtime?
What are dml commands?
What does bitemporal mean?
What is trigger in flip flop?
What is where clause in sql?
what is the command line end user interface - mysql? : Sql dba
What is %rowtype in pl sql?