計算機等級考試二級VFP上機考試命令速記:綜合篇
&&菜單-計算
SELECT Xuesheng.民族, avg(數(shù)學(xué)) as sx, avg(英語) as yy;
FROM xuesheng INNER JOIN chengji ;
ON Xuesheng.學(xué)號 = Chengji.學(xué)號;
WHERE Xuesheng.民族 = "漢";
INTO CURSOR cc
insert into table3 values(cc.民族,cc.sx,cc.yy)
SELECT Xuesheng.民族, avg(數(shù)學(xué)) as sx, avg(英語) as yy;
FROM xuesheng INNER JOIN chengji ;
ON Xuesheng.學(xué)號 = Chengji.學(xué)號;
WHERE Xuesheng.民族 != "漢";
INTO CURSOR cc
insert into table3 values(cc.民族,cc.sx,cc.yy)
update table3 set 民族="其他" where 民族!="漢"
&&菜單-計算
alter table order add 總金額 n(7,2)
SELECT Orderitem.訂單號, sum(數(shù)量*單價) as 總金額;
FROM goods INNER JOIN orderitem ;
ON Goods.商品號 = Orderitem.商品號;
GROUP BY Orderitem.訂單號;
INTO TABLE cc.dbf
close all
select 1
use cc
index on 訂單號 tag ddh
select 2
use order
index on 訂單號 tag ddh
set relation to 訂單號 into a
go top
do while not eof()
replace 總金額 with cc.總金額
skip
enddo
相關(guān)推薦:北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |