While using dbase database system we use “GO BOTTOM” to move the pointer to the last record. But how to do it when using mysql? This is how I do it:

SELECT * FROM table ORDER BY id DESC LIMIT 1;

Do you get the point?