[EMAIL PROTECTED] (Nuno Oliveira) wrote in
news:[EMAIL PROTECTED]: 

 
> My problem/question is how can I know the link for each one of these
> found records??? Which is the <offset> for the LIMIT???


The way to retrieve individual records is by id, not by LIMIT n, m:

SELECT * FROM Clients WHERE id = <<Some value>>

and *not*

SELECT * FROM Clients ORDER BY Name LIMIT n, 1

-- 
felix

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

Reply via email to