--第一题查询Student表中的所有记录的Sname.Ssex和Class列.select Sname,Ssex,Class from Student;--第二题查询教师所有的单位即不重复的Depart列.select distinct Depart from Teacher;--第三题. 查询Student表的所有记录select * from Student;--第四题. 查询Score表中成绩在60到80之间的所有记录.select * from Score where Degree b…