データベースの最適化

データベースの最適化
1.最適化前

insert into table(mobile) values (138000000);
insert into table(mobile) values (138000000);
insert into table(mobile) values (138000000);
……

実行時間:30分

2.最適化後
insert into table(mobile) values (138000000), (138000000), (138000000);……

実行時間:6秒

Source

Posted by arkgame