Write a query to get last 10 records from the table.
Answer Posted / nzabin
select PO_header_id from (select PO_header_id from PO_HEADERS_ALL order by PO_header_id
desc) where rownum <=10 order by PO_header_id;
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How to convert comma separated string to array in pl/sql?
what is oracle database ? : Sql dba
What are the conditions an underlying table must satisfy before a cursor can be used by a positioned update or delete statement? : Transact sql
What is the purpose of the partition table?
Explain what is a database?
Does sql*plus have a pl/sql engine?
What does cursor do in sql?
What are keys in sql?
What is the purpose of a secondary key?
what are the authentication modes in sql server? : Sql dba
What is cursor in pl sql?
Is pl sql and postgresql same?
what is a stored procedure? : Sql dba
Is primary key an index?
Can 2 queries be executed simultaneously in a distributed database system?