mysql将表a中查询的数据插入到表b中
2014-11-12来源:

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

如果表b存在

1

insert into b select * from a;

如果表b不存在

1

create table b as select * from a;

扩展:

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

1

insert into a (userid,username) select b.userid,b.username from tr_ajax_chat_messages;

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

1update a set a.username=(select b.username from b where a.userid = b.userid);

更多信息请查看IT技术专栏

推荐信息
Baidu
map