this should display the second and third row. If you just replace the 2 by 1, it will display the second row:
SQL Code:
SELECT * FROM mytable LIMIT 1, 1
i tested it on my server when i posted the code in my previous code, and it worked just fine. Anyway, you should be able to fix it yourself:
the first number defines the offset of the query
the last number defines the length of the returned result
more information:
http://dev.mysql.com/doc/refman/5.0/...html#id3093998