学生表:Student学生表(学号,姓名,性别,年龄,组织部门)

Course课程表(编号,课程名称)

Sc选课表(学号,课程编号,成绩)

表结构如下:

(1).写一个SQL语句,查询选修了’计算机原理’的学生学号和姓名

(2).写一个SQL语句,查询’周星驰’同学选修了的课程名字

(3).写一个SQL语句,查询选修了5门课程的学生学号和姓名

查看答案
正确答案:

(1)

select sno,sname

from student

where sno in (

select sno

from sc

where cno = (

select cno

from course

where cname= 计算机原理

)

)

(2)

select cname

from course

where cno in (

select cno

from sc

where sno =

(

select sno

from student

where sname= 周星驰

)

)

(3)

select sno,sname

From student

Where sno in (

select sno

from scgroup by sno having count(sno)=5

)

答案解析:

暂无解析

上一题
你可能感兴趣的试题

Whilebuildingatunnelthroughthemountain,_________.

A、anundergroundlakewasdiscovered
B、therewasanundergroundlakediscovered
C、alakewasdiscoveredunderground
D、theworkersdiscoveredanundergroundlake

赏心悦目的雕花玻璃是使用下列哪种物质对玻璃刻蚀而制成的()

A、盐酸
B、氢氟酸
C、硝酸

从数字1,2,3,4,5中随机抽取两个数字(不允许重复),那么这两个数字的和是奇数的概率为()

A、4/5
B、3/5
C、2/5
D、1/5

下列气体常温下能共存的是()

A、H2和O2
B、NO和O2
C、NH3和HCl

Payattentiontoroadsignwhiledrivinginforeigncountry.

A、a;a
B、the;the
C、the;a
D、a;the
热门试题 更多>
相关题库更多>
公共基础
Python语言程序设计
MS Office高级应用
Web程序设计
MySQL数据库程序设计
试卷库
试题库