標籤:
1.用PHP代碼迴圈把要插入的資料存入檔案
//隨機字串function getRandChar($length){$str = null;$strPol = "ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789abcdefghijklmnopqrstuvwxyz";$max = strlen($strPol)-1;for($i=0;$i<$length;$i++){$str.=$strPol[rand(0,$max)];//rand($min,$max)產生介於min和max兩個數之間的一個隨機整數}return $str;}function get_customers(){$t=mktime(); set_time_limit(1000); $myFile="e:/insert.sql"; $fhandler=fopen($myFile,‘wb‘); if($fhandler){ $i=0; while($i<1000000)//1,000,000 {$firstname = $this->getRandChar(5);//放到類裡面使用$email = $firstname.‘@qq.com‘;$password = sha1($firstname);$sql="$firstname\t$firstname\t$email\t$password"; //注意欄位資料之間用\t分隔$i++; fwrite($fhandler,$sql."\r\n"); } echo"寫入成功,耗時:",mktime()-$t; }exit;}
2.運行LOAD DATA local INFILE在MYSQL查詢器裡面讀取寫入資料的檔案,就可以秒如資料庫百萬資料了
LOAD DATA local INFILE ‘e:/insert.sql‘ INTO TABLE gc_customers(`firstname`, `lastname`, `email`, `password`);
秒速插入百萬測試資料MYSQL,提供你玩玩大資料!