jeje, ahora sí
Aparentemente no es posible, aunque te podés ahorrar algo de trabajo con la función
mysql_insert_id si lo que te interesa es mantener los campos auto_increment.
Según el manual de MySQL, la sintaxis de INSERT es
Código:
INSERT [LOW_PRIORITY | DELAYED | HIGH_PRIORITY] [IGNORE]
[INTO] tbl_name [(col_name,...)]
VALUES ({expr | DEFAULT},...),(...),...
[ ON DUPLICATE KEY UPDATE col_name=expr, ... ]
como ves, solo se admite 1 tabla.
Saludos.