码迷,mamicode.com
首页 > 数据库 > 详细

sql - 批量插入数据

时间:2014-07-13 19:58:40      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   数据   io   

  • 直接构造
insert into t (c1, c2, c3) values (1, 1, 1), (2, 2, 2)
  • 使用UNION
insert into t (c1, c2, c3) (select a1, a2, a3) union all (select b1, b2, b3)

 

  • 利用查询结果
insert into t (c1, c2, c3) (select a1, a2, a3 from t2)

 

sql - 批量插入数据,布布扣,bubuko.com

sql - 批量插入数据

标签:style   blog   color   使用   数据   io   

原文地址:http://www.cnblogs.com/sunlb/p/3841035.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!