分类:
2008-12-23 10:39:27
方法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');