Re: rownum-Problem
So if we take this problem one step further:
I'm looking for a way to page through result sets. For simplicity, let's say the result set of my query has 100 rows. I want to display increments of 10 rows on a web page. With Oracle, I could just do something like "select * from mytable where rownum between 20 and 30" (excuse the syntax - it's been a while for oracle). But in MySQL, all I see is that it provides me is a way to limit the number of rows returned but no way to provide a starting point e.g. 20 like in the my example. In other words, "select * from mytable limit 10" will always give me the FIRST 10 rows. What if I want the NEXT 10 rows, or the next, or the next?
Any ideas how to do this in MySQL?
Subject
Views
Written By
Posted
17736
August 06, 2004 12:28AM
28307
September 26, 2004 09:04AM
11927
October 09, 2004 03:02PM
22560
October 10, 2004 12:56PM
12447
December 22, 2004 07:05AM
13434
December 22, 2004 01:59PM
Re: rownum-Problem
9610
April 13, 2005 01:25PM
12912
April 14, 2005 12:08AM
7061
April 26, 2005 02:12AM
7582
April 20, 2005 04:37PM
9938
April 23, 2005 09:48AM
5618
August 26, 2008 03:47AM
5829
April 26, 2005 02:16AM
5558
October 18, 2005 02:57PM
5506
November 16, 2005 04:58PM
18657
June 28, 2006 04:39PM
19074
August 08, 2006 07:45AM
5291
December 14, 2008 10:01PM
5454
February 05, 2009 04:49PM
4648
December 27, 2008 03:27AM
4751
December 27, 2008 04:19AM
6484
February 08, 2007 02:20AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.