我对这2个错误有疑问ORA-01422 ORA-06512

问题描述 投票:-1回答:1
declare 
    cm Pilote.comm%type;
    dt Pilote.embauche%type;
begin
    select comm, embauche into cm, dt from Pilote;
end;
oracle plsql oracle-sqldeveloper plsqldeveloper
1个回答
0
投票
太多行。您必须限制查询仅返回一行(例如,使用where子句),或者-如果您想选择更多行,则以不同的方式(例如,放入数组)。
© www.soinside.com 2019 - 2024. All rights reserved.