我在一个表中创建了一个列,我想用从另一个 select 语句中检索到的数据填充该表。
这是我试图用来填充这一列的语句:
update cc_file
set sd_file_name = (select c1.name sd_file_name
from cc_file f, cvs3 c1
where f.sd_file_id = c1.file_id
and (c1.file_id, c1.type) in (select file_id,
max(type)
from cvs3
where type1='PP'
and type2='XHMTML'
group by file_id)
当我在 Oracle 中运行此语句时,它显示此错误ORA-01427: single-row subquery returns more than one row
请有人让我知道我可以如何做到这一点,以便更新专栏。
谢谢