Can I refer to a row in a mysql database by the number in which it is in my table.
Example:
I have a table with 3 columns, id (auto_increment, primary key), name, title.
4 Tom President
5 Jane President
7 Joe President
Now I want to be able to return the name of the first row. I can't call it by id, name, or title. The only thing I know is that I need the result for the first row.
Is there a default id for mysql or how would I refer to a specific row by order?