Jump to content

inserting data to two tables simultaneously in common fields


deepshah2004

Recommended Posts

If you review the MySQL INSERT syntax, you can see this is not possible:

 

http://dev.mysql.com/doc/refman/5.1/en/insert.html

 

You will have to generate this using separate queries for each table.  If you need to specify a specify the similarly named field in each table, you can do so by prefixing the column name with a table name, i.e.:

 

INSERT INTO table1 (table1.column) VALUES ('somedata')

 

versus...

 

INSERT INTO table2 (table2.column) VALUES ('somedata')

 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.