|
How do I get data from a specific table row in mysql database?
For example, I have a table of animals like this.
id | name | type | size
01 | rat | pest | very small
02 | dog | pet | varies
03 | elephant | mammal | large
How can fetch data only from the second row?
|