欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  数据库

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

程序员文章站 2022-05-26 08:11:28
...
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);
相关标签: 数据