山东大学软件学院数据库系统实验八九
Posted 叶卡捷琳堡
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了山东大学软件学院数据库系统实验八九相关的知识,希望对你有一定的参考价值。
一、实验时间
2021年5月25日星期二,13周
二、实验题目
实验八、数据修改的提交和回退、实体授权
一、 实验内容
启动两个不同浏览器,firefox登录主账号userID、360浏览器登录备用账号userbID,测试提交和回退的作用,了解锁等待、授权知识。
二、 实验步骤
1. 使用主用户userID登入数据库,简称主窗口。
2. 使用备用用户userbID登入数据库,简称备用窗口。
3. 关闭自动提交复选框。
4. 主用户访问备用用户的表之前,需要在备用账号中将相应的表的相应的权限授权给主用户,这样主用户才可以查询操作备用用户的相应的表。
在主用户下可以执行select * from userbId.test8_00查询备用用户的表test8_00的数据,如果没有授权,则会提示表没有表找到。
如果备用用户执行grant select on test8_00 to userID,即授权表test8_00的select权限给用户userID,上面的查询语句就可以正确执行,并查询到相应的结果。
5. 常用的授权、命令:
grant select on test8_00 to userID授权表test8_00的select权限给用户userID。
grant update on test8_00 to userID授权表test8_00的update权限给用户userID。
grant insert on test8_00 to userID授权表test8_00的insert权限给用户userID。
grant delete on test8_00 to userID授权表test8_00的delete权限给用户userID。
grant all on test8_00 to userID授权表test8_00的all权限给用户userID。
revoke select on test8_00 from userID收回表test8_00的insert权限从用户userID。
6. 在备用用户下将pub.teacher复制到test8_00中,然后将其所有权限给主用户。
7. 按表中序号在相应窗口执行对应的命令(主用户访问备用用户表需要授权)。
表格详见《数据库系统实验大纲》
8. 假设数据中有张老师,通过上面的操作以后,他在每次查询的时候的年龄是多少?根据你的判断得出结果,然后按步骤进行实验验证,在主用户下创建一个表test8_10(test varchar(20),age numeric (3)),插入10行数据,分表存放10个结果。
测试时使用的sql
create table test8_00 as
select *
from pub.teacher
grant select on test8_00 to user201900301067
grant update on test8_00 to user201900301067
grant insert on test8_00 to user201900301067
grant delete on test8_00 to user201900301067
grant all on test8_00 to user201900301067
select * from userb201900301067.test8_00
答案
create table test8_10(test varchar(20),age numeric(3))
insert into test8_10 (test,age) values('结果1',88)
insert into test8_10 (test,age) values('结果2',90)
insert into test8_10 (test,age) values('结果3',90)
insert into test8_10 (test,age) values('结果4',86)
insert into test8_10 (test,age) values('结果5',90)
insert into test8_10 (test,age) values('结果6',90)
insert into test8_10 (test,age) values('结果7',86)
insert into test8_10 (test,age) values('结果8',86)
insert into test8_10 (test,age) values('结果9',76)
insert into test8_10 (test,age) values('结果10',86)
实验九
一、实验内容
学会复制表结构、学会插入数据,特别是学会如何避免重复插入,也就是如何避免插入已经存在的数据。
二、实验题目1
1.创建表test9_01,表的结构同pub.student_11_1一样。
2.为test9_01的sid创建唯一不重复索引。
3.将pub用户下的Student中性别是“女”的数据添加到test9_01中。
4.将pub用户下的Student_11_1中性别是“女”的数据添加到test9_01中,如果某个学号已经包含在test9_01中,这个记录就不要再插入了(即不要插入重复学号的数据)。
5.将pub用户下的Student_11_2中性别是“女”的数据添加到test9_01中,如果某个学号已经包含在test9_01中,这个记录就不要再插入了(即不要插入重复学号的数据)。
6.要求完成上述功能,请采用1条create table、1条create index、3条insert共5条SQL方式完成。
create table test9_01
(
sid char(12) primary key,
name varchar2(10) not null,
sex varchar2(10),
age int,
birthday date,
dname varchar2(30),
class varchar2(10)
)
insert into test9_01 a
select *
from pub.student s
where s.sex = '女'
insert into test9_01
select *
from pub.student_11_1
where sex = '女' and sid not in (select sid from test9_01)
insert into test9_01
select *
from pub.student_11_2
where sex = '女' and sid not in (select sid from test9_01)
三、实验题目2
7.创建表test9_02,表的结构同pub.student_11_1一样。
8.为test9_02的sid创建唯一不重复索引。
9.将pub用户下的Student中性别是“女”的且pub.student_course中存在不及格成绩的同学添加到test9_02中。
10.将pub用户下的Student_11_1中性别是“女”的且pub.student_course中存在不及格成绩的同学数据添加到test9_02中,如果某个学号已经包含在test9_02中,这个记录就不要再插入了(即不要插入重复学号的数据)。
11.将pub用户下的Student_11_2中性别是“女”的且pub.student_course中存在不及格成绩的同学数据添加到test9_02中,如果某个学号已经包含在test9_02中,这个记录就不要再插入了(即不要插入重复学号的数据)。
12.要求完成上述功能,请采用1条create table、1条create index、3条insert共5条SQL方式完成。
create table test9_02
(
sid char(12) primary key,
name varchar2(10) not null,
sex varchar2(10),
age int,
birthday date,
dname varchar2(30),
class varchar2(10)
)
insert into test9_02
select distinct s.sid,name,sex,age,birthday,dname,class
from pub.student s,pub.student_course sc
where s.sid = sc.sid and sc.score < 60 and s.sex = '女'
insert into test9_02
select distinct s.sid,name,sex,age,birthday,dname,class
from pub.student_11_1 s,pub.student_course sc
where s.sid = sc.sid and sc.score < 60 and s.sex = '女' and s.sid not in(select sid from test9_02)
insert into test9_02
select distinct s.sid,name,sex,age,birthday,dname,class
from pub.student_11_2 s,pub.student_course sc
where s.sid = sc.sid and sc.score < 60 and s.sex = '女' and s.sid not in(select sid from test9_02)
以上是关于山东大学软件学院数据库系统实验八九的主要内容,如果未能解决你的问题,请参考以下文章