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
How do you update a value in sql?
How do you optimize a stored procedure in sql?
how to delete an existing column in a table? : Sql dba
What is cold data?
can sql servers linked to other servers like oracle? : Sql dba
Can you have more than one trigger on a table?
How to execute a stored procedure?
what are date and time intervals? : Sql dba
Can we use joins in subquery?
Is ms sql is free?
Is sql harder than python?
What is rollback?
How do I order columns in sql?
What are the disadvantages of file system?
What is varray in pl sql?