When doing an insert into a table with an auto_increment
field, you can get the auto_incremented field with $dbh->{'insert_id'}.
Is there an easy query or function to find out what column
this value was inserted into? Do I have to do a describe table
and look for the primary key, or is there an easier way?