RE: MySQL: Selecting a patricular row

2003-03-31 Thread "Paracková Eva, Ing"
try: select limit , 1 eva -Original Message- From: Marc Bakker [mailto:[EMAIL PROTECTED] Sent: 29. marca 2003 16:55 To: [EMAIL PROTECTED] Subject: MySQL: Selecting a patricular row Hello, I am working on a PHP/MySQL/Apache website. I have a MySQL table with 5 rows. I want to sele

RE: MySQL: Selecting a patricular row

2003-03-30 Thread Uttam
what do you mean by row number? afaik, in RDBMS primary key is the identifier for a particular row. u hv to use the primary key of the row in the where clause... SELECT * FROM table WHERE primary_key_column= regds, -Original Message- From: Marc Bakker [mailto:[EMAIL PROTECTED] Sent: Sat

Re: MySQL: Selecting a patricular row

2003-03-29 Thread R. Hannes Niedner
On 3/29/03 7:55 AM, "Marc Bakker" <[EMAIL PROTECTED]> wrote: > Hello, > I am working on a PHP/MySQL/Apache website. I have a MySQL table with 5 > rows. I want to select a patricular row using it's absolute row number. How > can I do this? I found mysql_row_seek() n te MySQL docs but this requires