deepshah2004 Posted January 22, 2009 Share Posted January 22, 2009 I have two tables with some common fields how do i enter data to the common fields at one go using mysql statements please help urgently Link to comment https://forums.phpfreaks.com/topic/141997-inserting-data-to-two-tables-simultaneously-in-common-fields/ Share on other sites More sharing options...
MachineHead933 Posted January 23, 2009 Share Posted January 23, 2009 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') Link to comment https://forums.phpfreaks.com/topic/141997-inserting-data-to-two-tables-simultaneously-in-common-fields/#findComment-743992 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.