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
What is java sql package?
Is left join inner or outer by default?
How do I find duplicates in sql?
how can we repair a mysql table? : Sql dba
Is microsoft sql free?
How does stored procedure reduce network traffic?
What is user in sql?
What are the different datatypes available in PL/SQL?
Explain the purpose of %type and %rowtype data types?
Which join is default?
explain the advantages and disadvantages of stored procedure? : Sql dba
What is left join in postgresql?
Which join is like an inner join?
Is coalesce faster than isnull?
What is difference between stored function and application function?