私は SQL Oracle を初めて使用します。次のスクリプトがあります。
create table students(
sid char(10),
honors char(10) not null,
primary key (sid),
Constraint studentConst foreign key (honors) references Courses(cid),
);
create table Courses(
cid char(10),
grader char(20) not null,
primary key (cid),
Constraint CoursesConst foreign key (grader) references students(sid),
);
SET CONSTRAINT studentConst,CoursesConst DEFERRED;
上記のスクリプトを実行すると、次のエラーが発生します: SQL エラー: ORA-00904: : 行 5 の無効な識別子. なぜこのエラーが発生するのですか?