为什么下面的Oracle语句一直报错说缺失右括号,表名以及属性均正确

2025-04-29 02:01:01
推荐回答(2个)
回答1:

你试试我写的
create view test6_06 as select a.sid sid,name from pub.student a where not exists((select cid from pub.course where cid is not null )minus(select b.cid cid from pub.student_course b,pub.course c where a.sid =b.sid and b.cid=c.cid and b.score>=60 ))

回答2:

exist改成exists