基础数据在oracle里,如何查询后insert到MySQL。
$id=post['id'];
Oracle查询:
Select id,name,phone,sex,add from table a where I'd='$id'
mysql插入:
Inset into table_b (name,phone,sex,add) value(
'$name',
'$phone',
'$sex',
'$add');
基础数据在oracle里,如何查询后insert到MySQL。
$id=post['id'];
Oracle查询:
Select id,name,phone,sex,add from table a where I'd='$id'
mysql插入:
Inset into table_b (name,phone,sex,add) value(
'$name',
'$phone',
'$sex',
'$add');