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

正文內(nèi)容

數(shù)據(jù)庫表單的創(chuàng)建ppt課件(編輯修改稿)

2025-05-27 18:13 本頁面
 

【文章內(nèi)容簡介】 按下面要求完成程序設(shè)計 : 1. 建立一個數(shù)據(jù)庫 studata,并將上面兩個自由表添加到數(shù)據(jù)庫中 。以學(xué)號 (xuehao)為主關(guān)鍵字建立student和 score1兩表之間的關(guān)聯(lián) ,student為父表。 2. 設(shè)計一個表單,以 studata中的兩個表作為表單的數(shù)據(jù)環(huán)境,在表單中添加一個命令按鈕 mand1和一個標簽 label1。 mand1的標題為 “最高平均分 ”。3. 單擊 mand1按鈕求出所有學(xué)生中平均分最高的學(xué)號和平均分 ,并將它們分兩行顯示在 label1中。成績字段名為 chengji。平均分是指每個學(xué)生所有課程的平均分。n select xuehao, avg(chengji) as che from score1 group by xuehao order by che desc into cursor dcn =+xuehao+chr(13)+str(che)n ~n 656566 96現(xiàn)有兩個自由表 {}和{},先將兩文件下載到你的考試文件夾 ,然后按下面要求完成程序設(shè)計 : 1. 建立一個數(shù)據(jù)庫 scoredata,并將上面兩個自由表添加到數(shù)據(jù)庫中 。以學(xué)號 (xuehao)為主關(guān)鍵字建立兩表之間的關(guān)聯(lián) ,score3為父表。 2. 設(shè)計一個表單,以 scoredata作為表單的數(shù)據(jù)環(huán)境,在表單中添加一個命令按鈕mand1和 一個編輯框 edit1。 mand1的標題為 “至少一門及格人的最高助學(xué)金 ”。 C49(至少一門不少于某一分數(shù)類 )3. 單擊 mand1按鈕將統(tǒng)計四門成績至少有一門不小于 60的人的最高助學(xué)金(zhuxuejin),并將它顯示在 edit1中。四門課程成績字段名分別為 cj cj cj3和 cj4。n select max(zhuxuejin) as m from score3,score4 where (=60 or =60 or =60 or =60 ) and = into cursor sn =str()n ~n 996現(xiàn)有兩個自由表 {}和{},先將兩文件下載到你的考試文件夾 ,然后按下面要求完成程序設(shè)計 : 1. 建立一個數(shù)據(jù)庫 scoredata,并將上面兩個自由表添加到數(shù)據(jù)庫中 。以學(xué)號 (xuehao)為主關(guān)鍵字 建立兩表之間的關(guān)聯(lián) ,score3為父表。 2. 設(shè)計一個表單,以 scoredata作為表單的數(shù)據(jù)環(huán)境,在表單中添加一個命令按鈕mand1和一個組合框 bo1。 mand1的標題為 “男生全及格人數(shù) ”。C49(均不少于某一分數(shù)類 )n 3. 單擊 mand1按鈕將統(tǒng)計每個年級 (20222022)男生(xingbie為真 )中四門成績均不小于 60的人數(shù),并將它們顯示在 bo1中。四門課程成績字段名分別為 cj cj cj3和 cj4。年級字段名為 nianji。n select count(*) as a from score3,score4 where = and =60 and =60 and =60 and =60 and xingbie=.t. and nianji=2022 into cursor t1n (str())n select count(*) as a from score3,score4 where = and =60 and =60 and =60 and =60 and xingbie=.t. and nianji=2022 into cursor t2n (str())n select count(*) as a from score3,score4 where = and =60 and =60 and =60 and =60 and xingbie=.t. and nianji=2022 into cursor t3n (str())n select count(*) as a from score3,score4 where = and =60 and =60 and =60 and =60 and xingbie=.t. and nianji=2022 into cursor t4n (str())n ~n 2022(8) 2022(12) 2022(11) 2022(6)C44(學(xué)號中含有某些數(shù)字類 )現(xiàn)有兩個自由表 {}和 {},按下面要求完成程序設(shè)計 : 1. 建立一個數(shù)據(jù)庫 studata,并將上面兩個自由表添加到數(shù)據(jù)庫中 。以學(xué)號 (xuehao)為主關(guān)鍵字 建立student和 score1兩表之間的關(guān)聯(lián) ,student為父表。 2. 設(shè)計一個表單,以 studata中的兩個表作為表單的數(shù)據(jù)環(huán)境,在表單中添加一個命令按鈕 mand1和一個編輯框 edit1,mand1的標題為 “含 4和 5平均分 ”。 n 3. 單擊 mand1按鈕求出學(xué)號中同時含有 4和 5的所有學(xué)生中的平均分最低的姓名和平均分,并將它們顯示在 edit1中。成績字段名為 chengji。 平均分是指每個學(xué)生所選各門課程的平均分。n select avg() as ch, from student,score1 where like %4% and like %5% and = group by order by ch into cursor t2n =xingming+chr(13)+str(ch,10,2)n ~n 569084 楊中國 68 在做題之前,應(yīng)對題中所用到表有所熟悉: 自由表 包含如下字段:bianhao 字符型,寬度 8xingming 字符型,寬度 8mima 字符型,寬度 6chusny 日期型,寬度 8gongzsj 日期型,寬度 8hunfo 邏輯型,寬度 1jiangjin 數(shù)值型,寬度 7,小數(shù)位數(shù) 2gongzi 數(shù)值型,寬度 7,小數(shù)位數(shù) 2注:做題之前要設(shè)置默認目錄(將所做好的表單文件及表文件都放在該文件夾下)請將自由表 {}下載到你的考試文件夾中,并按下面的要求完成程序設(shè)計: 1. 設(shè)計一個表單 ,表單的標題為 “最大年齡人數(shù)和編號查詢”,名稱為 tjform,表單中有三個命令按鈕 和三個編輯框edit edit2和 edit3 ,三個按鈕的標題分別為 “編號查詢”,“最大年齡人數(shù) ”和 “退出 ”。 2. 在 edit1中輸入編號 (bianhao),單擊 “
點擊復(fù)制文檔內(nèi)容
教學(xué)課件相關(guān)推薦
文庫吧 www.dybbs8.com
備案圖片鄂ICP備17016276號-1