所以我试图在我的数据库中插入250 000行.由于这只是样本数据,我只需要查询一个x,y变量,它确实改变了for循环,而只是简单地“water”的地形
但这是永远的.任何人都知道如何让这种情况更快发生?
ini_set('max_execution_time',70000);
$conn = MysqL_connect('localhost','root','') or die(MysqL_error());
MysqL_select_db('hol',$conn) or die(MysqL_error());
for ($y=0;$y<500;$y++) {
for ($x=0;$x<500;$x++) {
MysqL_query("INSERT INTO map(x,y,terrain) VALUES($x,$y,'water')");
}
}
最佳答案
原文链接:https://www.f2er.com/mysql/433763.html