基本操作題答案:
1、“顯示”命令按鈕的Click事件代碼為:thisform.text1.value=year(date())
2、test的事件代碼為:thisform.command1.enabled=.f.
4、程序three.prg的內(nèi)容如下:alter table 教師表 alter 職工號 set check LEFT(職工號,3)="110"
簡單應(yīng)用題答案: 1、程序four.prg的內(nèi)容如下:由于閱卷系統(tǒng)問題,本題必須嚴(yán)格照抄,包括行數(shù)。
create sql view salary as;
select 教師表.系號,AVG(教師表.工資) AS 平均工資;
FROM 課程管理!教師表;
GROUP BY 教師表.系號;
ORDER BY 2 DESC
2、第一處加:do while not eof(),由于閱卷系統(tǒng)問題,not前后不能帶. 第二處加:endif,第三處加:skip,第四處加:if flag=0
綜合應(yīng)用題答案:“生成表”命令按鈕的CLICK事件如下:
Clos all
a=thisform.check1.value
b=thisform.check2.value
c=thisform.optiongroup1.option1.value
d=thisform.optiongroup1.option2.value
if a=1 and b=1
if c=1
select 職工號,姓名,系名,工資,課程號 from教師表,學(xué)院表 where 教師表.系號=學(xué)院表.系號;
order by 職工號 into table two
else
if d=1
select 職工號,姓名,系名,工資,課程號 from教師表,學(xué)院表 where 教師表.系號=學(xué)院表.系號;
order by 職工號 desc into table two
endif
endif
endif
if a=1 and b=0
if c=1
select 職工號,姓名,系名,課程號 from教師表,學(xué)院表 where 教師表.系號=學(xué)院表.系號;
order by 職工號 into table one_x
else
if d=1
select 職工號,姓名,系名,課程號 from教師表,學(xué)院表 where 教師表.系號=學(xué)院表.系號;
order by 職工號 desc into table one_x
endif
endif
endif
if a=0 and b=1
if c=1
select 職工號,姓名,工資,課程號 from教師表,學(xué)院表 where 教師表.系號=學(xué)院表.系號;
order by 職工號 into table one_xx
else
if d=1
select 職工號,姓名,工資,課程號 from教師表,學(xué)院表 where 教師表.系號=學(xué)院表.系號;
order by 職工號 desc into table one_xx
endif
endif
endif
北京 | 天津 | 上海 | 江蘇 | 山東 |
安徽 | 浙江 | 江西 | 福建 | 深圳 |
廣東 | 河北 | 湖南 | 廣西 | 河南 |
海南 | 湖北 | 四川 | 重慶 | 云南 |
貴州 | 西藏 | 新疆 | 陜西 | 山西 |
寧夏 | 甘肅 | 青海 | 遼寧 | 吉林 |
黑龍江 | 內(nèi)蒙古 |