- 40
- 0
- 约1.01万字
- 约 44页
- 2018-01-15 发布于浙江
- 举报
找出比Small Bank Corporation所有员工收入都高的所有的员工的姓名 select employee_name from works where salary all (select max(salary) from works where company_name=‘S.B.C.’) 假设一个公司可以位于几个城市中,找出位于Small Bank Corporation所在的各个城市的所有公司 select company-name from company where city in (select city from company where company_name=‘S.B.C.’) Copyright: Xinying Wang 假设一个公司可以位于几个城市中,找出位于Small Bank Corporation所在的各个城市的所有公司 select company-name from company as c where not exists ( select city from company where company-name=‘S. B. C’ except select city from
原创力文档

文档评论(0)