A.前后顺序可以任意颠倒,不影响库中的数据关系
B.前后顺序可以任意颠倒,但排列顺序不同,统计处理结果可能不同
C.前后顺序不能任意颠倒,一定要按照输入的顺序排列
D.前后顺序不能任意颠倒,一定要按照关键字段值的顺序排列解析] 本题考查关系数据库中记录之间关系的知识。一个关系数据库的表中有多条记录,记录之间的前后顺序并不会对库中的数据关系产生影响,所以行的顺序是无所谓的,可以任意颠倒。
一个关系中可以有无限多个数据记录。根据查询相关信息显示,关系数据库,是建立在关系数据库模型基础上的数据库。关系数据库的定义造成元数据的一张表格或造成表格、列、范围和约束的正式描述。一个关系数据库表中的各条记录前后顺序可以任意颠倒,不影响数据库中数据的实际意义。-- 一题create table s--学生表
(sno char(8) primary key,--学号
sname char(10) ,--姓名
sage int ,--年龄
ssex char(2),--性别
sdept char(20))--所在系
create table c--课程表
(cno char(4) primary key,--课程号
cname char(20),--课程名
c_dept char(20),--开课系
teacher char(10))--老师
create table sc--成绩表
(sno char(8) not null,--学号
cno char(4) not null,--课程号
grade int ,--成绩
constraint PK_sc primary key(sno,cno),--主键
constraint PK_s_sno foreign key(sno) references s(sno),--外键
constraint FK_c_cno foreign key(cno) references c(cno))--外键
--二题
--1
select cno,cname
from c
where teacher='刘'
--2
select sname
from s
where ssex='女'
and sno in (select sno
from sc
where cno in(select cno
from c
where teacher='刘'))
--3
select cno
from c
where not exists(select * from s,sc
where s.sno=sc.sno
and sc.cno=c.cno
and sname='王乐')
--4
select count(distinct Cno) as 课程门数
from sc
--5
select avg(grade)
from sc
where cno='c4'
--6
select c.cno,avg(grade) as avg_grade
from sc,c
where sc.cno=c.cno and teacher='刘'
group by c.cno
--7
select sname,sage
from s
where sname like'王%'
--8
select sname,sage
from s
where ssex='男' and
sage>all(select sage
from s
where ssex='女')
--9
insert into s(sno,sname,sage)
values('009','吴',18)
--10
delete from sc
where grade is null
--11
update sc
set grade=0
where cno in (select cno
from c
where cname='数据库')and grade<60
--12
update sc
set grade=grade*1.05
where sno in(select sno from s where ssex='女'
and grade<(select avg(grade) from sc))
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)