iT邦幫忙

perton 所有喜歡的回答 902

如何利用PHP把A資料庫Select到的資料Insert到B資料庫之中?

<?php // 定義資料庫相關變數 define('dbHost','localhost'); define('dbUser','root'); //...

2010-02-10 ‧ 由 joe64 提問

如何利用PHP把A資料庫Select到的資料Insert到B資料庫之中?

insert into DbA.tablea select * from DBb.tableb 從B資料庫的tableb 資料表撈資料到 A資料庫的tablea...

2010-01-23 ‧ 由 joe64 提問

如何利用PHP把A資料庫Select到的資料Insert到B資料庫之中?

insert into DbA.tablea select * from DBb.tableb 從B資料庫的tableb 資料表撈資料到 A資料庫的tablea...

2010-01-23 ‧ 由 joe64 提問

如何利用PHP把A資料庫Select到的資料Insert到B資料庫之中?

insert into table_name (fields_name) select fields_name from table_name where 條件...

2010-01-21 ‧ 由 joe64 提問

如何利用PHP把A資料庫Select到的資料Insert到B資料庫之中?

insert into table_name (fields_name) select fields_name from table_name where 條件...

2010-01-21 ‧ 由 joe64 提問