Re: How to get the same subset of records within a web session
From: konghou <brotherhou_at_yahoo.com>
Date: 22 Apr 2002 03:01:34 -0700
Message-ID: <c19678a1.0204220201.785a6fd3_at_posting.google.com>
Date: 22 Apr 2002 03:01:34 -0700
Message-ID: <c19678a1.0204220201.785a6fd3_at_posting.google.com>
I found this is more simple:
select * from (select emp.*, rownum r from emp) where r > 5 and r <= 10; Received on Mon Apr 22 2002 - 12:01:34 CEST