On Mon, 19 Mar 2001, Andres M.V. Paglayan wrote:

> Hi you all,
> I´m trying to resolve how to manage a large resultset (about 500), 
> showing only 20 rows per page and then to have the option to show more results from 
>several buttons, 
> like when you search something with a lot of pages in the yahoo,
> Best wishes for you all.
> Thanks in advance.

select * from foo limit 20 
-- wil show  the first 20 rows

select * from foo limit 20, 5
--will show the row 21 - 25; 
> 
> 
> 
> 
> 
> ------------------------------------------------------
> Andrés Mariano Vazken Paglayan
> [EMAIL PROTECTED]
> ------------------------------------------------------
> 


---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to