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
Write a sql select query that only returns each name only once from a table?
What are the different type of joins in sql?
How much does sql certification cost?
Is sql better than access?
What are the operators used in select statements?
What is the example of procedure?
What are the types of variable use in pl sql?
How many sql core licenses do I need?
Enlist some predefined exceptions?
Explain raise_application_error.
What version is sql?
Explain two easy sql optimizations.
How do I access sql anywhere database?
Is there any restriction on the use of union in embedded sql?
Explain polymorphism in pl/sql.