&&菜單-考試-計算-table3
SELECT Xuesheng.學(xué)號, Xuesheng.姓名, Chengji.數(shù)學(xué), Chengji.英語,;
Chengji.信息技術(shù);
FROM xuesheng INNER JOIN chengji ;
ON Xuesheng.學(xué)號 = Chengji.學(xué)號;
ORDER BY Xuesheng.學(xué)號 DESC;
INTO TABLE table3.dbf
alter table table3 add 等級 c(4)
close all
use table3
do while not eof()
do case
case 數(shù)學(xué)>=60 and 英語>=60 and 信息技術(shù)>=60 and (數(shù)學(xué)+英語+信息技術(shù))/3>=90
replace 等級 with "優(yōu)"
case 數(shù)學(xué)>=60 and 英語>=60 and 信息技術(shù)>=60 and (數(shù)學(xué)+英語+信息技術(shù))/3>=80 and (數(shù)學(xué)+英語+信息技術(shù))/3<90
replace 等級 with "良"
case 數(shù)學(xué)>=60 and 英語>=60 and 信息技術(shù)>=60 and (數(shù)學(xué)+英語+信息技術(shù))/3>=70 and (數(shù)學(xué)+英語+信息技術(shù))/3<80
replace 等級 with "中"
case 數(shù)學(xué)>=60 and 英語>=60 and 信息技術(shù)>=60 and (數(shù)學(xué)+英語+信息技術(shù))/3<70
replace 等級 with "及格"
otherwise
replace 等級 with "差"
endcase
skip
enddo
相關(guān)推薦:北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |