首页 > 代码库 > MySQL将表a中查询的数据插入到表b中
MySQL将表a中查询的数据插入到表b中
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);
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。