MySQL Forums
Forum List  »  Oracle

Re: rownum-Problem
Posted by: Jeff Whippo
Date: April 13, 2005 01:25PM

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?

Options: ReplyQuote


Subject
Views
Written By
Posted
17589
August 06, 2004 12:28AM
28227
September 26, 2004 09:04AM
11868
October 09, 2004 03:02PM
22488
October 10, 2004 12:56PM
12343
December 22, 2004 07:05AM
13342
December 22, 2004 01:59PM
Re: rownum-Problem
9532
April 13, 2005 01:25PM
12826
April 14, 2005 12:08AM
6982
April 26, 2005 02:12AM
7508
April 20, 2005 04:37PM
9852
April 23, 2005 09:48AM
5525
August 26, 2008 03:47AM
5754
April 26, 2005 02:16AM
5504
October 18, 2005 02:57PM
5440
November 16, 2005 04:58PM
18961
August 08, 2006 07:45AM
5221
December 14, 2008 10:01PM
5376
February 05, 2009 04:49PM
4581
December 27, 2008 03:27AM
4681
December 27, 2008 04:19AM
6413
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.