1. 程式人生 > >insert into table 插入多條資料

insert into table 插入多條資料

方法1:
insert into `ttt`
select '001','語文' union all
select '002','數學' union all
select '003','英語';

方法2:
INSERT INTO tab_comp VALUES(item1, price1, qty1),
(item2, price2, qty2),
(item3, price3, qty3);

方法3:
 INSERT INTO tab_comp(item1, price1, qty1) SELECT item1, price1, qty1 FROM tab_cc;