计划,每天学习两小时,坚持带来大改变。

insert into table 插入多条数据

MySQL 阿尤 2727浏览 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 插入多条数据

游客
发表我的评论 换个身份
取消评论

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址
  • 验证码 (必填)点击刷新验证码