|
I wonder if it is possible to use skip/max in sql
statement.
Every database has it's own solution for limiting
rows:
- sql server has top
- postgresql : limit and offset
- mysql: also limit and offset ( if I have a good
memory:)
- oracle prior to 9i combination of: rownum, order
like this:
select * from
(select kol1, kol2
from table
order by kol1)
where rownum <15
- oracle 9i provides analytic function like
rownumber
and so on and on ...
So it seems to be possible
Have you ever considered that way?
Darek Dober
|
- Re: Stored procedure with queryForList skipresults and... Darek Dober
- RE: Stored procedure with queryForList skipresult... Rao, Satish
- RE: Stored procedure with queryForList skipre... Prashanth Sukumaran
