Oracle测试题及答案.doc
合集下载
相关主题
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
select bno from books
where bname=,计算方法,
)
and bno not in (
select bno from books
where bname=’计算机方法习题集’
)
order by eno desc
&将“cor班同学所借图书的还期都延长一周。
update borrow
10.如果经常按书名查询图书信息,清建立合适的索引。
create index bname_idx on books(bname);
11.在borrow表上建立一个触发器,完成如下功能:如果读者借阅的书名是“数据库技术及应用”,就将该读者的借阅记录保存在borrow_save表中(注:borrow_save表结构同borrow表)。
end if;
end;
/
12.建立一个视图,显示“力01”班学生的借书信息(只要求显示姓名和书名)。
create view ca_view as
(select name,bno from card c,borrow b where c.cno=b.bno and c>class=,^J OF
);
13.查询当前同时借有“计算方法”和“组合数学”两本书的读者,输出其借书卡号,并按卡号升序排序输出。
(select eno
from borrow
where bno=( select bno from books
where bname=,计算方法,
))
intersect
(select eno
from borrow
where bno=( select bno from books
where bname=’组合数学’
select bname, author
from books
where price in (
select max(price) from books )
7.查询当前借了“计算方法”但没有借“计算方法习题集”的读者,输出其借书卡号,并按卡号降序排序输出。
select eno
from borrow
where bno=(
))
order by eno;
14.假定在逮books表吋没有定义主码,写出为books表追加定义主码的语句。
Alter table books
Add(primary key(bno));
15.对card表做如下修改:
将name最大列宽增加到10个字符(假定原为6个字符)。
为该表增加1列:dname(系名),可变长,最大20个字符。
from card c, borrow b
where c.cno=b.eno and b.rdate<sysdate;
5.查询书名包括“网络”关键同的图书,输出书号、书名、作者。
select bno, bname, author
from books
where bname like’%网络%’;
6.查卸现有图书中价格最高的图书,输出书名及作者。
create table borrow_save as
(select * from borrow)
delete borrow_save;
commit;
create or replace trigger borrow_in
after insert
on borrow
for each row
declare
s books.bno%type;
begin
select bno into s from books where bname=l数据库技术及应用f;
if s=:new.bno then
insert into borrow_save
values(:new.cno,:new.bno,:new.rdate);
create table books
(bno char (8) primary key, bname varchar2(50), author varchar2(10), price number(5,3), quantity number(4)
);
create table borrow
(eno char (6) references card(eno) on delete cascade, bno char (8) references books (bno) on delete cascade, rdate date,
Oracle
学号姓名分数_
(一)按照题意写出SQL语句(45分每题3分)
本题用到下而三个关系表:
借书卡card (eno卡号,name姓名,class班级)
图书books (bno书号,bname书名,author作者,price单价,quantity库存册数)借书记录borrow (eno借书卡号,bno书号,rdate还书曰期)
from card
where eno in (
select eno from borrow where bno=(
select bno from books where bname=’水游,
)
)
1.杏询过期未还图书,输出借阅者(卡号)、书号及还书曰期。
select c.eno, bno, rdate
set rdate=rdate+7
where eno in (
select eno from card where class=,cOl’
)
commit
參
9.从books表中删除当前无人借阅的图书记录。
select百度文库*
from books
where bno not in (
select bno from borrow )
primary key (eno, bno)
);
2.找出借书超过5本的读者,输出借书卡号及所借图书册数。
select eno, count (*)册数
from borrow
group by eno
having count(*)>5;
3.查询借阅了“水浒’’一书的读者,输出姓名及班级。
select name, class
注:限定每人每种书只能借一本;库存册数随借书、还书而改变。
1.写出建立borrow表的SQL语句,要求定义主码完整性约束和引用完整性约束create table card
(eno char (6) primary key, name varchar2(10), class varchar2(12)
);
where bname=,计算方法,
)
and bno not in (
select bno from books
where bname=’计算机方法习题集’
)
order by eno desc
&将“cor班同学所借图书的还期都延长一周。
update borrow
10.如果经常按书名查询图书信息,清建立合适的索引。
create index bname_idx on books(bname);
11.在borrow表上建立一个触发器,完成如下功能:如果读者借阅的书名是“数据库技术及应用”,就将该读者的借阅记录保存在borrow_save表中(注:borrow_save表结构同borrow表)。
end if;
end;
/
12.建立一个视图,显示“力01”班学生的借书信息(只要求显示姓名和书名)。
create view ca_view as
(select name,bno from card c,borrow b where c.cno=b.bno and c>class=,^J OF
);
13.查询当前同时借有“计算方法”和“组合数学”两本书的读者,输出其借书卡号,并按卡号升序排序输出。
(select eno
from borrow
where bno=( select bno from books
where bname=,计算方法,
))
intersect
(select eno
from borrow
where bno=( select bno from books
where bname=’组合数学’
select bname, author
from books
where price in (
select max(price) from books )
7.查询当前借了“计算方法”但没有借“计算方法习题集”的读者,输出其借书卡号,并按卡号降序排序输出。
select eno
from borrow
where bno=(
))
order by eno;
14.假定在逮books表吋没有定义主码,写出为books表追加定义主码的语句。
Alter table books
Add(primary key(bno));
15.对card表做如下修改:
将name最大列宽增加到10个字符(假定原为6个字符)。
为该表增加1列:dname(系名),可变长,最大20个字符。
from card c, borrow b
where c.cno=b.eno and b.rdate<sysdate;
5.查询书名包括“网络”关键同的图书,输出书号、书名、作者。
select bno, bname, author
from books
where bname like’%网络%’;
6.查卸现有图书中价格最高的图书,输出书名及作者。
create table borrow_save as
(select * from borrow)
delete borrow_save;
commit;
create or replace trigger borrow_in
after insert
on borrow
for each row
declare
s books.bno%type;
begin
select bno into s from books where bname=l数据库技术及应用f;
if s=:new.bno then
insert into borrow_save
values(:new.cno,:new.bno,:new.rdate);
create table books
(bno char (8) primary key, bname varchar2(50), author varchar2(10), price number(5,3), quantity number(4)
);
create table borrow
(eno char (6) references card(eno) on delete cascade, bno char (8) references books (bno) on delete cascade, rdate date,
Oracle
学号姓名分数_
(一)按照题意写出SQL语句(45分每题3分)
本题用到下而三个关系表:
借书卡card (eno卡号,name姓名,class班级)
图书books (bno书号,bname书名,author作者,price单价,quantity库存册数)借书记录borrow (eno借书卡号,bno书号,rdate还书曰期)
from card
where eno in (
select eno from borrow where bno=(
select bno from books where bname=’水游,
)
)
1.杏询过期未还图书,输出借阅者(卡号)、书号及还书曰期。
select c.eno, bno, rdate
set rdate=rdate+7
where eno in (
select eno from card where class=,cOl’
)
commit
參
9.从books表中删除当前无人借阅的图书记录。
select百度文库*
from books
where bno not in (
select bno from borrow )
primary key (eno, bno)
);
2.找出借书超过5本的读者,输出借书卡号及所借图书册数。
select eno, count (*)册数
from borrow
group by eno
having count(*)>5;
3.查询借阅了“水浒’’一书的读者,输出姓名及班级。
select name, class
注:限定每人每种书只能借一本;库存册数随借书、还书而改变。
1.写出建立borrow表的SQL语句,要求定义主码完整性约束和引用完整性约束create table card
(eno char (6) primary key, name varchar2(10), class varchar2(12)
);