基本上我有两个这样的表:
表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:
这个工作正常:
INSERT INTO entitleddays (employee, startdate, enddate, type, days, description)
VALUES (1, '2015-01-01', '2015-12-31', 3, 5, 'test');
在这里,我尝试了上面解释的内容,但它不起作用:
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)。
答案 0 :(得分:11)
只需使用insert . . . select
:
INSERT INTO entitleddays (employee, startdate, enddate, type, days, description)
SELECT id, '2015-01-01', '2015-12-31', 3, 5, 'test'
FROM users;