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
How many joins in sql?
What is the difference between union and union all command?
What are synonyms in sql?
What is the difference between a database and a relational database?
Does varchar need length?
How does sql profiler work?
What is the use of triggers?
What is a behavioral trigger?
What is the purpose of a sql?
How do I save a stored procedure?
Why do we use joins?
How does left join work in sql?
How do I count records in sql?
Explain what is dbms?
what are the disadvantages of mysql? : Sql dba