Write a query to get last 10 records from the table.
Answer Posted / sudhir
select rownum, p.*
from (select * from <table name> order by param_cd desc) p
where rownum <= 10 ;
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
Which is the correct statement about truncate and delete?
what is the difference between a local and a global temporary table? : Sql dba
Does sql*plus also have a pl/sql engine?
Is like operator in sql case sensitive?
How to select the Nth maximum salary from Table Emp in Oracle SQL Plus ?
What is a full join?
What can you do with pl sql?
What are functions in sql?
Write the order of precedence for validation of a column in a table? I. Done using database triggers. Ii. Done using integarity constraints
What is trigger and how to use it in sql?
Is oracel sql developer written in java?
How to get each name only once from an employee table?
What is microsoft t sql?
Name three sql operations that perform a sort.
What is a constraint?