首页 > 其他 > 详细

insert into table 插入多条数据

时间:2017-12-26 11:32:34      阅读:217      评论:0      收藏:0      [点我收藏+]

方法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;

 

insert into table 插入多条数据

原文:https://www.cnblogs.com/fnlingnzb-learner/p/8116760.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!