我有一个客户表(id
,name
,address
,.....)和一个客户帐户表(acntid
,name
,address
.....)和Datasource
表格包含(name
,adresss
,email
,zipcode
等。现在,我想同时从数据源向customer
和customeraccount
表插入名称和地址。我们是否应该编写脚本或程序或触发器或其他任何东西?
答案 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']) }