doing INSERTs in multiple tables is really just doing multiple different queries, and as such you should really just
do separate queries.
It won't save you any speed or overhead by trying to fake them as one query, not just because that can't really be done, but also because that's not a real way of optimizing queries.
So, just run different insert queries and run them separately.