vote up 1 vote down star
1

Im using an Oracle database.

In my query 100 rows are fetched. If I want to filter rows between rownum 50 and 60, what would be the query?

SELECT EMPLID, EFFDT, ACTION, ACTION_REASON 
from JOB where emplid ='12345'
flag

4 Answers

vote up 7 vote down check

Most people will commonly tell you to use ROWNUM, to do this, however the more succinct way is the use the row_number() analytic function.

select EMPLID, EFFDT, ACTION, ACTION_REASON
from
(
SELECT EMPLID, EFFDT, ACTION, ACTION_REASON, row_number() over (order by emplid) rn
from JOB where emplid ='12345'
)
where rn between 50 and 60;

Using the row_number function allows you to order the results AND number them in a single query, then you just need one wrapper query to get the rows you need.

link|flag
Thanks Nick, it worked. I really appreciate your help. – Bobby Mar 3 at 16:38
Not true: just because it LOOKS like a query within a query within a query, it doesn't mean Oracle implements it like that. I just tested each method 10,000 times and they ran in 69 and 78 ms (yours was the slower as it happens, but the difference is insignificant). Explain Plan shows what happens – Tony Andrews Mar 3 at 16:58
On my system the times are insignificant both run in the 1.5 ms range on my table, however the row_number's syntax is cleaner and doesn't require two inline views. See Tom Kyte, oracle.com/technology/oramag/… – Nick Mar 3 at 17:18
Agreed - it was the assertion that yours was "the more efficient" way that I was calling you on! They are to all intents and purposes equally efficient. – Tony Andrews Mar 3 at 17:49
In fact, if you remove the "more efficient" claim from your answer, I'll vote it up! – Tony Andrews Mar 3 at 17:52
show 8 more comments
vote up 5 vote down

It's a little tricky in Oracle, I think you have to do something like this:

SELECT EMPLID,EFFDT,ACTION,ACTION_REASON
FROM (SELECT ROWNUM rnum, EMPLID,EFFDT,ACTION,ACTION_REASON
      FROM (SELECT EMPLID,EFFDT,ACTION,ACTION_REASON
            FROM JOB
            WHERE emplid = '12345')
      WHERE rownum <= 60
)
WHERE rnum >= 50;
link|flag
Is rownum ORDER BY sensitive? – Tomalak Mar 3 at 16:24
No, it's calculated only when the row is already fetched. – Quassnoi Mar 3 at 16:28
I believe so download.oracle.com/docs/cd/… – Dana the Sane Mar 3 at 16:28
Yeah, so an ORDER BY in the innermost query would be a very good idea, he just didn't have one in his example so I didn't want to guess at the right ordering. – Chad Birch Mar 3 at 16:28
I thank you all for your prompt response. I really appreciate your help. – Bobby Mar 3 at 16:51
show 4 more comments
vote up 0 vote down

You can use ROWNUM (see this link). If you need to control sort order, you can wrap another query around your query.

link|flag
I thank you all for your prompt response. I really appreciate your help. – Bobby Mar 3 at 16:53
vote up 7 vote down

Since I did a comparison of Chad's and Nick's approaches to make a comment on Nick's answer, I thought I'd post my findings here. I used Tom Kyte's runstats package to compare them with this script:

begin
   runstats_pkg.rs_start('Chad');
   for i in 1..10000 loop
     for r in (
      SELECT EMPLID,EFFDT,ACTION,ACTION_REASON
      FROM (SELECT ROWNUM rnum, EMPLID,EFFDT,ACTION,ACTION_REASON
            FROM (SELECT EMPLID,EFFDT,ACTION,ACTION_REASON
                  FROM JOB
                  WHERE emplid = '12345')
            WHERE rownum <= 60
      )
      WHERE rnum >= 50
      ) loop
        null;
      end loop;
   end loop;
   runstats_pkg.rs_middle('Nick');
   for i in 1..10000 loop
     for r in (
      select EMPLID, EFFDT, ACTION, ACTION_REASON
      from
      (
      SELECT EMPLID, EFFDT, ACTION, ACTION_REASON, row_number() over (order by emplid) rn
      from JOB where emplid ='12345'
      )
      where rn between 50 and 60
      ) loop
        null;
      end loop;
    end loop;
   runstats_pkg.rs_stop(0,false,false,false,false,false,false,false,false);
end;
/

The results:

Run1 = Chad
Run2 = Nick

*** Comparative Time Report ***
Run                                   Time (hsecs)
--------------------------------------------------
Run1                                            69
Run2                                            77

Run1 ran in 89.61% of the time of Run2
Run2 ran in 111.59% of the time of Run1

PL/SQL procedure successfully completed.

Using autotrace the plans can be seen to be pretty similar:

SQL>           SELECT EMPLID,EFFDT,ACTION,ACTION_REASON
  2            FROM (SELECT ROWNUM rnum, EMPLID,EFFDT,ACTION,ACTION_REASON
  3                  FROM (SELECT EMPLID,EFFDT,ACTION,ACTION_REASON
  4                        FROM JOB
  5                        WHERE emplid = '12345')
  6                  WHERE rownum <= 60
  7            )
  8            WHERE rnum >= 50
  9  /

no rows selected


Execution Plan
----------------------------------------------------------

------------------------------------------------------------------------------
| Id  | Operation                     | Name    | Rows  | Bytes | Cost (%CPU)|
------------------------------------------------------------------------------
|   0 | SELECT STATEMENT              |         |     1 |    41 |     3   (0)|
|*  1 |  VIEW                         |         |     1 |    41 |     3   (0)|
|*  2 |   COUNT STOPKEY               |         |       |       |            |
|   3 |    TABLE ACCESS BY INDEX ROWID| JOB     |     1 |    13 |     3   (0)|
|*  4 |     INDEX RANGE SCAN          | JOB2_PK |     1 |       |     2   (0)|
------------------------------------------------------------------------------

Predicate Information (identified by operation id):
---------------------------------------------------

   1 - filter("RNUM">=50)
   2 - filter(ROWNUM<=60)
   4 - access("EMPLID"=12345)


Statistics
----------------------------------------------------------
          1  recursive calls
          0  db block gets
          2  consistent gets
          0  physical reads
          0  redo size
        264  bytes sent via SQL*Net to client
        231  bytes received via SQL*Net from client
          1  SQL*Net roundtrips to/from client
          0  sorts (memory)
          0  sorts (disk)
          0  rows processed

SQL>           select EMPLID, EFFDT, ACTION, ACTION_REASON
  2            from
  3            (
  4            SELECT EMPLID, EFFDT, ACTION, ACTION_REASON, row_number() over (order by emplid) rn
  5            from JOB where emplid ='12345'
  6            )
  7            where rn between 50 and 60
  8 
link|flag
Hm. If that isn't above and beyond, then I don't know what is. ;-) +1 – Tomalak Mar 3 at 17:53
Yes, it's a sad indictment of my afternoon! – Tony Andrews Mar 3 at 17:56

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.