三、綜合應(yīng)用(1小題,計30分)
當(dāng)order_detail表中的單價修改后,應(yīng)該根據(jù)該表的"單價"和"數(shù)量"字段修改order_list表的總金額字段,現(xiàn)在編寫程序?qū)崿F(xiàn)此功能,具體要求和注意事項如下:
(1) 根據(jù)order_detail表中的記錄重新計算order_list表的總金額字段的值;
(2) 一條order_list記錄可以對應(yīng)幾條order_detail記錄;
(3) 在編程前應(yīng)保證在基礎(chǔ)操作中正確地建立了order_list表,在簡單應(yīng)用中為該表追加了記錄(注意只能追加一次);
(4) 最后將order_list表中的記錄按總金額降序排序存儲到od_new表中(表結(jié)構(gòu)與order_list表完全相同);
(5) 將程序保存為prog1.prg文件。
解答:
Prog1.prg程序代碼如下:
Sele 訂單號,sum(單價*數(shù)量) as 總金額 from order_detai1 group by 訂單號 into table t
set talk off
use t in 0
index on 訂單號 tag xx
set order to tag xx
use order_list in 2
select 2
set relation to 訂單號 into order_detail
replace all 總金額 with t.總金額
sort on 總金額/desc to od_new
set talk on
附:本題相關(guān)表