1、 查询Student表中的所有记录的Sname、Ssex和Class列。
select sname,ssex,class from STUDENT t

2、 查询教师所有的单位即不重复的Depart列。
select distinct depart from TEACHER t

3、 查询Student表的所有记录。
select * from STUDENT t

4、 查询Score表中成绩在60到80之间的所有记录。
select * from Score where Degree>=60 and Degree<=80
