Mysql insert into select , update select 操作
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Mysql insert into select , update select 操作相关的知识,希望对你有一定的参考价值。
参考技术A 有时候需要把查询到的数据直接插入另一个表中,sql如下:insert into a
(a.aid, a.name)
select id, name from b
where b.xx = xx
更新操作如下:
UPDATE ta SET name = ( SELECT a.name
FROM a
WHERE ta.aid = a.id )
WHERE ta.pid = xx
内容追加:
update ta set name = CONCAT(name, 'str') WHERE id = xx //CONCAT 追加字段内容
MySQL关联表插入数据(insert into select语法)
批量新增A表数据,A表的某字段需要关联B表查询数据结果。
SQL语法如下:
insert into a (a1, a2, a2, a4)
select b1, b2, b3 (....) a2, a3, a4 from b;
--也就是insert into select语法
其中A表是需要插入数据的表,select B表的某字段,根据A表的顺序放置,不然会无法匹配字段,导致无法插入,而后可以根据顺序填写A表字段所需的值,最后补上 from xxx表。
现有user、role表,需求:在批量新增用户时,将role的id字段作为user表的role_id进行插入,使用上面的语法
举个栗子:
insert into user (user_name, pass_word, enabled, locked, role_id)
select id, "dahsjk", 1, 1, id
from role;
以上是关于Mysql insert into select , update select 操作的主要内容,如果未能解决你的问题,请参考以下文章
Mysql insert into select , update select 操作
MySQL LAST_INSERT_ID() 与 INSERT INTO tablea SELECT FROM tableb
MySQL INSERT INTO / ON DUPLICATE KEY 与 SELECT 语句问题
mysql insert into 或 select into - 将列从 tbl1 复制到 tbl2