I am trying to grab a specific row from a MySQL table based on its position. Let's say I have these records:
+-------------------+
| ID | Data |
+--------+----------+
| 1 | Apple |
| 2 | Orange |
| 3 | Kiwi |
| 4 | Lobster |
| 25 | Chicken |
| 26 | Banana | <----
| 27 | Melon |
+--------+----------+
Now, I want to grab the 6th record from this table, but I don't know what the ID
is, or what the Data
column contains. All I know is that it is the 6th record in the table. How would I go about this?