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 are mysql timestamps seen to a user? : Sql dba
what is rollback? : Sql dba
What are the types of subqueries?
How do you change a value in sql?
Define commit?
What is cursor explain with example?
How do I find duplicates in sql?
what are the advantages of using stored procedures? : Sql dba
What is meant by <> in sql?
What is count * in sql?
what are all the common sql function? : Sql dba
What is rtm in testing?
how to create a new view in mysql? : Sql dba
what is bdb (berkeleydb)? : Sql dba
How do you use collections in procedure to return the resultset?