I have 3 different tables I want to insert information into. Is it possible to do like this?
INSERT INTO table1.field1,table2.field1, table3.field1 VALUES('value1','value2','value3');
instead of having 3 different querys ?
/Staffan
No. You have to use three different queries.