1、
select Sname , Ssex ,Class from t_hq_student;
2、
select distinct Depart from t_hq_teacher;
3、
select * from t_hq_student;
4、
select * from t_hq_Score where Degree between 60 and 80;
5、
select * from t_hq_Score where Degree in(‘85‘,‘86‘,‘88‘);
6、
select * from t_hq_student where class = ‘95031‘ and Ssex = ‘女‘;
7、
select * from t_hq_Student order by class desc;
时间: 2024-10-05 02:52:33