vfp写出SQL查询的命令
发布网友
发布时间:2022-04-27 10:10
我来回答
共1个回答
热心网友
时间:2023-09-11 20:50
1、select * from s where 性别 like '女' AND 年龄<=20 order by 年龄 DESC
2、SELECT S.学号,S.姓名,C.课程名,SC.成绩 FROM S
, SC , C WHERE s.学号 = sc.学号 and c.课程号 = sc.课程号
3、SELECT * TOP 5 FROM C order by 学分 DESC
4、insert into sc(学号,课程号,成绩) values("0201","01103",80)
5、alter table s drop column 年龄