close
//------------建立名叫temp_test的temptable 然後給值 來源是table1
$set_table='CREATE TEMPORARY TABLE `temp_test` ENGINE = MYISAM
SELECT a, b, c, d, e FROM `table1`';
//------------------------------------------------------------
mysql_query($set_table) or die(mysql_error().$set_table);
//--------------------------------寫入另一個表格資料
$set_table2='insert into `temp_test` SELECTa, b, c, d, e FROM `table2`';
mysql_query($set_table2) or die(mysql_error().$set_table2);
全站熱搜
留言列表