我正在使用WAMP并拥有名为master和master_break的表。 master表包含名为start_number和no_of_items的字段。
所以我需要从主表中获取start_number和no_of_items并生成可能的数字。
例如:
start_number = 45620;
no_of_items = 5;
然后我需要向master_break表插入45620,45621,45622,45623,45624。我的主表生成超过75000个值。当我运行INSERT INTO总是出去maximum_execution_time。如何提高插入速度?
答案 0 :(得分:1)
通常,您可以通过以下方式提高MySQL插入速度:
INSERT INTO tableName (col1) VALUES (a) , (b) , (c)