基础数据在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的查询方式去读数据,然后插入mysql即可