freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內(nèi)容

數(shù)據(jù)庫(kù)原理及應(yīng)用——崔巍書(shū)后上機(jī)實(shí)驗(yàn)(文件)

 

【正文】 02的訂單名細(xì)記錄。二、實(shí)驗(yàn)內(nèi)容:用SQL SELECT語(yǔ)句完成各種數(shù)據(jù)查詢。Macbook39。2011103039。7select distinct 客戶名稱,聯(lián)系人,電話from 客戶 c,產(chǎn)品 g,訂購(gòu)單 o,訂單名細(xì) dwhere 產(chǎn)品名稱=39。)9select * from 訂購(gòu)單where 訂單號(hào) in(select 訂單號(hào)from 訂單名細(xì)where 數(shù)量10)10select * from 產(chǎn)品 where 單價(jià) =(select 單價(jià) from 產(chǎn)品 where 規(guī)格說(shuō)明=39。13select * from 客戶 where 客戶名稱 not like 39。)18select SUM(數(shù)量*單價(jià)) 總金額from 產(chǎn)品,訂單名細(xì)where =and 產(chǎn)品名稱=39。group by 22select 訂單號(hào),COUNT(*) 項(xiàng)目數(shù),AVG(數(shù)量*單價(jià)) 平均金額from 產(chǎn)品 g,訂單名細(xì) iwhere =group by 訂單號(hào)having COUNT(*)=223select 客戶名稱,聯(lián)系人,電話,訂單號(hào)from 客戶 c,訂購(gòu)單 owhere =and 訂購(gòu)日期 is null24select 客戶名稱,聯(lián)系人,電話,訂單號(hào),訂購(gòu)日期from 客戶,訂購(gòu)單where =and 訂購(gòu)日期39。二、實(shí)驗(yàn)內(nèi)容:定義視圖,并在視圖上完成查詢、插入、更新和刪除操作。使用select * from v_order3)、基于單個(gè)表按選擇和投影操作定義視圖create view v_cuss asselect 客戶名稱,聯(lián)系人,電話from 客戶where 客戶號(hào)=39。)使用select * from v_item6)、查定義含有虛字段的視圖create view v_items(訂單號(hào),序號(hào),產(chǎn)品號(hào),數(shù)量,總金額) asselect i.*,*from 訂單名細(xì) i,產(chǎn)品 gwhere =使用select * from v_items2在視圖上查詢select * from v_items在視圖上插入insert into v_cus values(39。)在視圖上更新update v_order set 訂購(gòu)日期=39。數(shù)據(jù)庫(kù)系統(tǒng)及應(yīng)用 上機(jī)實(shí)驗(yàn)報(bào)告7一、實(shí)驗(yàn)?zāi)康模豪斫獯鎯?chǔ)過(guò)程的概念,掌握存儲(chǔ)過(guò)程的使用方法,加深對(duì)客戶/服務(wù)器機(jī)制的理解。return 0elsereturn 1執(zhí)行declare status intexecute status=sp_getgoods 1000,6000print status查詢?cè)谀衬昴吃履橙罩蠛炗喌挠嗁?gòu)單的客戶信息create proc sp_or_cusdates datetimeasselect 客戶名稱,聯(lián)系人,電話,訂單號(hào),訂購(gòu)日期from 客戶,訂購(gòu)單where =and 訂購(gòu)日期datesif ERROR= 0return 0elsereturn 1執(zhí)行declare status2 intexecute status2=sp_upd_date 39。print status2。,39。2011102739。三.、程序源代碼:在視圖上刪除delete from v_cuswhere 客戶號(hào)=39。,39。使用select * from v_cuss4)、基于多個(gè)表根據(jù)連接操作定義視圖create view v_join asselect 客戶.*,訂單號(hào),訂購(gòu)日期from 客戶 join 訂購(gòu)單on =使用select * from v_join5)、基于多個(gè)表根據(jù)嵌套查詢定義視圖create view v_item asselect * from 訂單名細(xì)where
點(diǎn)擊復(fù)制文檔內(nèi)容
外語(yǔ)相關(guān)推薦
文庫(kù)吧 www.dybbs8.com
備案圖鄂ICP備17016276號(hào)-1