如何将数据插入mysql中的多个表中

时间:2016-02-10 04:13:25

标签: mysql sql database mysql-workbench data-migration

我有一个客户表(idnameaddress,.....)和一个客户帐户表(acntidnameaddress .....)和Datasource表格包含(nameadresssemailzipcode等。现在,我想同时从数据源向customercustomeraccount表插入名称和地址。我们是否应该编写脚本或程序或触发器或其他任何东西?

1 个答案:

答案 0 :(得分:1)

同时触发两个查询

$result=mysql_query(select name,address from datasourcetable);
while($row=mysql_fetch_array($result))
 { 
   Insert Into customer(name,address) Values($row['name'],$row['address'])
  Insert Into customeraccount(name,address)Values(($row['name'],$row['address']) }