Is it possible to simultaneously insert a row into different tables using different column names in each table and different/similar values.
EG:
INSERT INTO table1 (col1, col2, col3) values (val1,val2,val3)
INSERT INTO table2 (col5, col6, col7 ,col8) value(val1,val2,val6,val8)
(BOTH above...