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

MySQL将表a中查询的数据插入到表b中

时间:2014-07-29 14:33:58      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:http   数据   html   ar   htm   sql   mysql   table   

MySQL将表a中查询的数据插入到表b中

如果表b存在

insert into b select * from a;

如果表b不存在

create table b as select * from a;

扩展:

将b表中的某写字段值插入到a表中

insert into a (userID,userName) select b.userID,b.userName from tr_ajax_chat_messages;

将a表和b表userID相等的值保存到a表

update a set a.userName=(select b.userName from b where a.userID = b.userID);


MySQL将表a中查询的数据插入到表b中,布布扣,bubuko.com

MySQL将表a中查询的数据插入到表b中

标签:http   数据   html   ar   htm   sql   mysql   table   

原文地址:http://blog.csdn.net/szy361/article/details/38224237

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