The MySQL manual states:
I wonder what is considered a 'client'. Is that simply just different connections to the database?
Using LAST_INSERT_ID( ) and AUTO_INCREMENT columns simultaneously from multiple clients is perfectly valid. Each client will receive the last inserted ID for the last statement that client executed.
Comment