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
Is sql a programming?
Does sql view stored data?
What is difference between primary and secondary key?
What is mutating error?
Advantages and disadvantages of stored procedure?
Does a primary key have to be a number?
Is sql a backend language?
How do I view output in sql developer?
What is sap sql?
What is synchronized subquery?
Can we join same table in sql?
What is primary key and foreign key?
What is the usage of sql functions?
What's the difference between inner join and left join?
What is the benefit of foreign key?