VFP数据库系统,我个人一点不懂,希望能帮我做下这些题目,只要答案!

2024-12-19 10:11:51
推荐回答(2个)
回答1:

USE 学生
GO BOTTOM
?RECNO(),EOF() 30,F
SKIP 5
?RECNO(),EOF() 31,T
GO TOP
?RECNO(),BOF() 1,F
SKIP -1
?RECNO(),BOF() 1,T
SKIP 20
?RECNO(),BOF() 21,F


1、select * from 学生 where recno()<=3 ,select * from 学生 where recno()>27
2、replace 学生.奖学金=学生.奖学金*1.1 where 学生.奖学金>100
3、delete from 学生 where 学生.生日>1971 and 学生.性别="女" RECALL all(恢复记录)
4、select sum(学生.奖学金),avg(学生.奖学金) from 学生
5、男同学人数:select count(*) from 学生表 where 学生.性别="男"
女同学人数:select count(*) from 学生表 where 学生.性别="女"
6、select * from 学生 where 学生.成绩<60

回答2:

1 30 ;.f.
2 f; t
3 1 ;f
4f; t