批量新增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;