![中級(jí)軟件設(shè)計(jì)師問答集^考試卷模擬考試題_0_第1頁](http://file1.renrendoc.com/fileroot_temp2/2020-11/6/844267b1-b65b-4e48-a284-68385bfc3e4c/844267b1-b65b-4e48-a284-68385bfc3e4c1.gif)
![中級(jí)軟件設(shè)計(jì)師問答集^考試卷模擬考試題_0_第2頁](http://file1.renrendoc.com/fileroot_temp2/2020-11/6/844267b1-b65b-4e48-a284-68385bfc3e4c/844267b1-b65b-4e48-a284-68385bfc3e4c2.gif)
![中級(jí)軟件設(shè)計(jì)師問答集^考試卷模擬考試題_0_第3頁](http://file1.renrendoc.com/fileroot_temp2/2020-11/6/844267b1-b65b-4e48-a284-68385bfc3e4c/844267b1-b65b-4e48-a284-68385bfc3e4c3.gif)
![中級(jí)軟件設(shè)計(jì)師問答集^考試卷模擬考試題_0_第4頁](http://file1.renrendoc.com/fileroot_temp2/2020-11/6/844267b1-b65b-4e48-a284-68385bfc3e4c/844267b1-b65b-4e48-a284-68385bfc3e4c4.gif)
下載本文檔
版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡(jiǎn)介
1、姓名:_ 班級(jí):_ 學(xué)號(hào):_-密-封 -線- 標(biāo)簽:標(biāo)題考試時(shí)間:120分鐘 考試總分:100分題號(hào)一二三四五總分分?jǐn)?shù)遵守考場(chǎng)紀(jì)律,維護(hù)知識(shí)尊嚴(yán),杜絕違紀(jì)行為,確??荚嚱Y(jié)果公正。1、【說明】設(shè)有下列關(guān)于圖書借閱系統(tǒng)的er圖。圖中矩形表示實(shí)體,圓表示屬性,雙圓表示關(guān)鍵字屬性,菱形表示實(shí)體間的聯(lián)系。假定已通過下列sql語言建立了基本表:create table readers(rao char(6) primary key,rname char(20) not null,raddress char(200),rphone char(15);create table books(brio char(
2、6) primary key,rname char(50) not null);create table administrators(ano char(6) primary key,aname char(20) not null);create table borrows(rno char(6) not null,bno char(15) not null,ano char(6) not null,bdate date,rdate date,primary key(rno,bno,ano),foregin key(rno) reference readers(rno),foregin key
3、(bno) reference book(bno)foregin key(ano) reference administrators(ano);create table readers(rao char(6) primary key,rname char(20) not null,raddress char(200),rphone char(15);create table books(brio char(6) primary key,rname char(50) not null);create table administrators(ano char(6) primary key,ana
4、me char(20) not null);create table borrows(rno char(6) not null,bno char(15) not null,ano char(6) not null,bdate date,rdate date,primary key(rno,bno,ano),foregin key(rno) reference readers(rno),foregin key(bno) reference book(bno)foregin key(ano) reference administrators(ano);為了答題的方便,圖中的實(shí)體和屬性同時(shí)給出了中英
5、文兩種名字,回答問題時(shí)只需寫出英文名即可。【系統(tǒng)e-r圖】1. 【問題1】填寫下列sql程序中的(1)(6),使它們分別完成相應(yīng)的功能。程序1:查沒有借閱過編號(hào)為111111圖書的所有讀者名單。select rno,rname,address,phonefrom readerswhere rno(1)(select(2)from borrowwhere bno=llllll);程序2:統(tǒng)計(jì)在2005年1月1日借書的讀者人數(shù)。select(3)from borrowwhere(4);程序3:查借書證號(hào)為123456的讀者所借過的所有圖書。select bno,bnamefrom bookswhe
6、re(5)(select *from borrowwhere(6)and rno=123456; ( )2、【說明】設(shè)有下列關(guān)于圖書借閱系統(tǒng)的er圖。圖中矩形表示實(shí)體,圓表示屬性,雙圓表示關(guān)鍵字屬性,菱形表示實(shí)體間的聯(lián)系。假定已通過下列sql語言建立了基本表:create table readers(rao char(6) primary key,rname char(20) not null,raddress char(200),rphone char(15);create table books(brio char(6) primary key,rname char(50) not nul
7、l);create table administrators(ano char(6) primary key,aname char(20) not null);create table borrows(rno char(6) not null,bno char(15) not null,ano char(6) not null,bdate date,rdate date,primary key(rno,bno,ano),foregin key(rno) reference readers(rno),foregin key(bno) reference book(bno)foregin key(
8、ano) reference administrators(ano);create table readers(rao char(6) primary key,rname char(20) not null,raddress char(200),rphone char(15);create table books(brio char(6) primary key,rname char(50) not null);create table administrators(ano char(6) primary key,aname char(20) not null);create table bo
9、rrows(rno char(6) not null,bno char(15) not null,ano char(6) not null,bdate date,rdate date,primary key(rno,bno,ano),foregin key(rno) reference readers(rno),foregin key(bno) reference book(bno)foregin key(ano) reference administrators(ano);為了答題的方便,圖中的實(shí)體和屬性同時(shí)給出了中英文兩種名字,回答問題時(shí)只需寫出英文名即可?!鞠到y(tǒng)e-r圖】1. 【問題1】填寫下列sql程序中的(1)(6),使它們分別完成相應(yīng)的功能。程序1:查沒有借閱過編號(hào)為111111圖書的所有讀者名單。select rno,rname,address,phonefrom readerswhere rno(1)(select(2)from borrowwhere bno=llllll);程序2:統(tǒng)計(jì)在2005年1月1日借書的讀者人數(shù)。s
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 二零二五年度高端辦公室文件消毒及深度保養(yǎng)合同
- 租賃期間房屋買賣合同
- 公司之間的借款協(xié)議
- 出租車停運(yùn)損失上訴狀
- 電器代理合同協(xié)議
- 財(cái)務(wù)管理系統(tǒng)操作與應(yīng)用手冊(cè)指南
- 農(nóng)業(yè)科技行業(yè)現(xiàn)代農(nóng)業(yè)技術(shù)推廣與應(yīng)用策略
- 廣告招牌安裝合同年
- 辦公室租賃合同書
- 安全事故賠償協(xié)議書
- 招標(biāo)代理服務(wù)的關(guān)鍵流程與難點(diǎn)解析
- GB/T 5465.2-2023電氣設(shè)備用圖形符號(hào)第2部分:圖形符號(hào)
- 《三國(guó)演義》中的佛教文化:以黃承兒為例
- 材料預(yù)定協(xié)議
- 2023年河北省中考數(shù)學(xué)試卷(含解析)
- 《學(xué)習(xí)的本質(zhì)》讀書會(huì)活動(dòng)
- 高氨血癥護(hù)理課件
- 物流營(yíng)銷(第四版) 課件 胡延華 第3、4章 物流目標(biāo)客戶選擇、物流服務(wù)項(xiàng)目開發(fā)
- 《石油化工電氣自動(dòng)化系統(tǒng)設(shè)計(jì)規(guī)范》
- Q-GGW-BF-0117-2023天然氣管道無人站技術(shù)規(guī)范
- 《公路勘測(cè)細(xì)則》(C10-2007 )【可編輯】
評(píng)論
0/150
提交評(píng)論