On Thu, 16 Oct 2003 11:49:29 -0400
"Cummings, Shawn (GNAPs)" <[EMAIL PROTECTED]> wrote:

> when I do a query is there a way to IGNORE the first X number of returned 
> records???
> 
> For instance I want to see 15 records after the first 50.

yes, use LIMIT clause:

SELECT * FROM tablename LIMIT 50,15;

but first read about it here:
http://www.mysql.com/doc/en/SELECT.html

---
WBR,
Antony Dovgal aka tony2001
[EMAIL PROTECTED]

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to