Date |Mon, 27 Aug 2001 18:32:57 -0500
>From |"Tyler Longrne" <[EMAIL PROTECTED]>

Hello!

TL> Hello everyone,

TL> Is there any way to make selections in groups of 5.  I want to get 5 record
TL> sets at a time until we get to a point that there's 4 or less records.

TL> Thank you everyone,
TL> Tyler

TL> database,sql,query,table

You can use select ... limit x,y syntax 
http://www.mysql.com/doc/S/E/SELECT.html
or make slightly more complex query -
for example 
select * from test where x>1 and x<5
___________________________________________________________________
For technical support contracts, visit https://order.mysql.com/
This email is sponsored by SWSoft, http://www.asplinux.ru/
   __  ___     ___ ____  __
  /  |/  /_ __/ __/ __ \/ /    Grigory Bakunov <[EMAIL PROTECTED]>
 / /|_/ / // /\ \/ /_/ / /__   MySQL AB / SWSoft
/_/  /_/\_, /___/\___\_\___/
       <___/   www.mysql.com


---------------------------------------------------------------------
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