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 primary key sql?
What is an exception in pl/sql?
What are the different ddl commands in sql?
What are sql functions? Describe in brief different types of sql functions?
Mention what does plv msg allows you to do?
Is sql difficult?
Differentiate between syntax and runtime errors.
What is primary key and foreign key?
Can we use pl sql in sql server?
How to convert comma separated string to array in pl/sql?
what are the different type of sql's statements ? : Sql dba
How do you modify a trigger?
What are the query optimization techniques?
Is postgresql a nosql database?
What are the parts of a sql statement?