mysql に関する本を読んでいるときに、データベースに行を挿入する 2 つの方法を見つけました。
Method 1
INSERT INTO tableName (col1, col2, col3) VALUES('a', 'b', 'c');
INSERT INTO tableName (col1, col2, col3) VALUES('d', 'b', 'c');
INSERT INTO tableName (col1, col2, col3) VALUES('e', 'b', 'c');
Method 2
INSERT INTO tableName (col1, col2, col3) VALUES('a', 'b', 'c'), ('d', 'b', 'c'), ('e', 'b', 'c');
2 番目の方法は最初の方法よりも効率的ですか? それとも単にMethod 1
複数回呼び出すのですか?