Phil Schwarzmann wrote:

>I want query my mysql table and get one particular row.
> 
>So let's say my table had 5 rows (entries) in it, and I want to pull
>just row #2, how would I do this??
> 
>THANKS!!
>
>  
>
It's OT but OK:

SELECT * FROM table LIMIT 1,1;

Have another look at the MySQL manual (6.4.1. Select Syntax)



René



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to