for example,there are several items in a table
id |name|info
1 |Jim |Male
2 |Rob |Male
the id of the table is auto_increment, and now i want to update Jim's row to the bottom of Rob ,and get the newest id, aka
id |name|info
2 |Rob |Male
3 |Jim |Male
and get the id of (3), what's the sql expression?