学生表:Student学生表(学号,姓名,性别,年龄,组织部门)
Course课程表(编号,课程名称)
Sc选课表(学号,课程编号,成绩)
表结构如下:
(1).写一个SQL语句,查询选修了’计算机原理’的学生学号和姓名
(2).写一个SQL语句,查询’周星驰’同学选修了的课程名字
(3).写一个SQL语句,查询选修了5门课程的学生学号和姓名
更新时间:2024-11-24 02:52:44(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
)
暂无解析
____是 DBMS的基本单位,它是用户定义的一组逻辑一致的程序序列。
有以下程序:程序运行后的输出结果是( )。
main()
{ int a[]=(2 ,4,6,8,10},y=0,x,*P;
p=&a[1];
for(x=1;x<3;x++) y+=p[x];
printf("%dn ,y");
}
存储过程和存储函数的主要区别在于 ______。
已知有如下结构体:若有 P=&data,则对 data 的成员 a 引用正确的是( )
struct sk
{ int a;
float b;
}data ,*p;
统计表中所有记录个数的聚集函数是 ______。