Write a query to get last 10 records from the table.
Answer Posted / pallavi v
with temp as
(select * from emp order by rownum desc)
select * from temp where rownum < = 10
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are the query optimization techniques?
What is a native sql query?
How delete all data from all tables in sql?
What are the different types of triggers?
What does fetching a cursor do?
What is percent sign in sql?
Is truncate ddl or dml?
What is the basic structure of an sql?
Can you select everything, but 1 or 2 fields, without writer's cramp?
What is sql analyzer?
What are tables and fields in the database?
how to select unique records from a table? : Sql dba
What are the benefits of pl/sql packages?
what is msql? : Sql dba
How does sql*loader handles newline characters in a record? : aql loader