Is it possible to insert values to one table and update another table with a single mysql call? If yes, is this faster or is it faster to use two separate calls?
For Example:
table1 - cars
id - color - brand
1 - red - audi
2 - blue - pontiac
table2 - people
id - name - last
1 - dave - ann
2 - beth - elane
tables do not relate
and lets say i would like to add another row to people while same time updating table1 cars's color
is that possible ?