繁体   English   中英

在表中为另一个表中的每个id插入行

[英]Insert row in table for each id from another table

基本上我有两个这样的表:

表1:用户

id_user, name, ...

表2:叶子

id_2, employee (the column employee is the id of the user from the first table), ...

现在表2是空的(没有行),对于第一个表中的每个用户,我想在第二个表上创建一行,将第一个表中的id作为列雇员中的值插入,如:

表2:叶子

id    employee    column1    column2    column3    column4    column5   
id1   1           date1      date2      integer1   integer2   string
id2   2           date1      date2      integer1   integer2   string
...

我试过的INSERTS:

  1. 这个工作正常:

     INSERT INTO entitleddays (employee, startdate, enddate, type, days, description) VALUES (1, '2015-01-01', '2015-12-31', 3, 5, 'test'); 
  2. 在这里,我尝试了上面解释的内容,但它不起作用:

     INSERT INTO entitleddays (employee, startdate, enddate, type, days, description) VALUES ((SELECT id from users), '2015-01-01', '2015-12-31', 3, 5, 'test'); 

我收到以下错误:

#1242 - 子查询返回超过1行

我确实理解错误:子查询找到了多个结果,因此它无法将值插入到员工中,我的问题是我不知道我应该使用什么语法作为菜鸟我。 我只想在第二个表中为第一个表中的每一行创建一行(使用第一个表中的id)。

只需使用insert . . . select insert . . . select insert . . . select

INSERT INTO entitleddays (employee, startdate, enddate, type, days, description)
    SELECT id, '2015-01-01', '2015-12-31', 3, 5, 'test'
    FROM users;

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM