我有一个 select 语句,它获取 100 行数据并将其插入到表中。但是,对于我在相邻列中插入的所有行,我想插入以插入1
另一列。
这是我的插入选择语句
insert into examination_data (ed_cs_id,ed_examination_id)
VALUES ((
select cs_id
from class_students
where cs_class_id = 1 AND cs_year_id = 1 ),1);
在运行查询时,我收到此错误
/* SQL 错误 (1242): 子查询返回多于 1 行 */