Three MySQL treats
Get the auto int that was just inserted:
select last_insert_id();Get a random list:
select * from some_table order by rand();Get one row from a table:
select * from some_table limit 1;
Now put them together. Or, maybe just the last two.
