思路是:首先,由某一顾客的CID找到其购买过ORDERS。根据CID找到代理商的AID。然后,用AID去找表AGENTS中的ANAME。
具体语句为:
πANAME(AGENTS∞(δCID=‘某个值’(ORDERS))
应该是这样的。
如果有什么问题可以一起讨论一下!
(1)
select Student.SNo,Student.SName,Student.SAge,Student.SDept from Student,SC where SC.SNo=Student.SNo and SC.Score60
(2)
select SC.Score from Student,SC,Coure where Student.SName='张三' and SC.SNo=Student.SNo and SC.CNo=Coure.CNo and Coure.CName='数据库系统概论'