my mysql skillz are really rusty, and now i need them for a project so i have to re-familiarize myself with it again, and i need some help.
i have a table, and in one set i have an auto incrementing number. what i want to do, is query for a record whose (auto incremented) number is the highest or has the largest value without having any idea what that number is, and i only want to return that one record.
so basically i want a:
select * from table where (field ??'s number is the highest) limit 1,1;
please help.