我有一个如下所示的数据库:
table_Students: { studentid(PK), name };
table_Stu_cou:{ studentid(FK), courseid(FK) };
table_Courses:{ courseid(PK), coursename };
table_Tea_cou { courseid(FK), teacherid(FK) };
table_Teachers:{ teacherid(PK), name};
stu_cou 表显示哪些学生参加了哪些课程。tea_cou 表显示哪些教师教授哪些课程。我必须列出所有从未见过面的学生和老师(学生从未参加过该讲师讲授的课程)。但我不知道如何制作它,我已经尝试了 2 天。你可以帮帮我吗?我正在使用甲骨文。