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
What is on delete restrict?
What is cursor status?
How many commands are in sql?
What is procedure function?
What are the three forms of normalization?
What are the possible values that can be stored in a boolean data field?
How to look at the current sql*plus system settings?
What is sqlservr exe?
What does := mean in pl sql?
What does fetching a cursor do?
What is the difference between numeric and autonumber?
Can we create table inside stored procedure?
What is sql and how does it work?
Why is %isopen always false for an implicit cursor?
Which is better trigger or stored procedure?