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
Explain the uses of control file.
How do you update a sql procedure?
what are null values? : Sql dba
What is union, minus and interact commands?
what is collation? : Sql dba
Can we use distinct and group by together?
What is the basic structure of an sql?
What is join view in sql?
What do you mean by stored procedures? How do we use it?
Is primary key clustered index?
Does truncate release storage space?
When to use inner join and left join?
what is data integrity? : Sql dba
What are packages in pl sql and also explain its advantages?
What are the types of functions in sql?