当前位置:Gxlcms > mysql > MySQL一次插入多值

MySQL一次插入多值

时间:2021-07-01 10:21:17 帮助过:30人阅读

方法1: INSERT INTO table(col_1, col_2,col_3) VALUES(

方法1: INSERT INTO table(col_1, col_2,col_3)   VALUES('1','11','111'); INSERT INTO table(col_1, col_2,col_3)   VALUES('2','22','222'); INSERT INTO table(col_1, col_2,col_3)   VALUES('3','33','333'); 有没有更快捷的办法呢?

答案是有(见方法2)

方法2: INSERT INTO table(col_1, col_2,col_3)   VALUES('1','11','111'), ('2','22','222'), ('3','33','333');

linux

人气教程排行