Question: How to Select last N records from a Table?Answer: select * from (select rownum a, CLASS_CODE,CLASS_DESC from clm)where a > ( select (max(rownum)-10) from clm) Here N = 10 The following query has a Problem of performance in the execution of the following query where the table ter.ter_master have 22231 records. So the results are obtained after hours. Cursor rem_master(brepno VARCHAR2) IS select a.* from ter.ter_master a where NOT a.repno in (select repno from ermast) and (brepno = 'ALL' or a.repno > brepno) Order by a.repno |
Is it helpful?
Yes
No
Most helpful rated by users: