Oracl数据库资料

时间:2015-02-28 17:03:24
【文件属性】:

文件名称:Oracl数据库资料

文件大小:217KB

文件格式:DOC

更新时间:2015-02-28 17:03:24

Oracl数据库

datetime,primary key(CNO,BNO)); 2. 找出借书超过5本的读者,输出借书卡号及所借图书册数。 Select CNO,number=count(*) from BORROW group by CNO having count(*)>5; 3. 查询借阅了"水浒"一书的读者,输出姓名及班级。 Select NAME,CLASS from CARD c where exist (select * from BORROW b1,BOOK b2 where b1.BND=b2.BND and b2.name = ‘水浒’ and a.CNO=b2.CNO); 4. 查询过期未还图书,输出借阅者(卡号)、书号


网友评论