ERROR at line 4: ORA-06550: line 4, column 5: PLS-00320: the declaration of the type of this expression is incomplete or malformed ORA-06550: line 2, column 1: PL/SQL: Item ignored ORA-06550: line 4, column 1: PLS-00320: the declaration of the type of this expression is incomplete or malformed ORA-06550: line 10, column 10: PL/SQL: ORA-00904: : invalid identifier ORA-06550: line 9, column 1: PL/SQL: SQL Statement ignoredはPLSQL
declare
type emp_detp_record is record
(
emp emp%rowtype,
dept dept%rowtype
);
emp_dept emp_detp_record;
begin
select * into
emp_dept
from emp,dept
where emp.deptno =dept.deptno
and empno =7839;
end;
/
私はそれがサポートされているとは思わない私はテストを設定し、テーブルをエイリアス化して、必要な場所にそれぞれテーブルを置くことができましたが、別のエラーが発生しました。PLS-00494:サポートされていない複数のレコードターゲットへの変換。私はそれを続けるつもりですが、これについてもっと知っている人が答えを提供してくれることを願っています。 – Bob