1. 查询Student表中的所有记录的Sname.Ssex和Class列.select Sname ,Ssex,Class from Student 2.查询教师所有的单位即不重复的Depart列.select Depart ,count(*) from Teacher group by Depart 3. 查询Student表的所有记录.select * from Student 4. 查询Score表中成绩在60到80之间的所有记录.select * from Score where De
create table Student--3rd再次执行 ( Sno int primary key not null,--学号主键 Sname varchar(50) not null,--学生姓名 Ssex varchar(50) not null,--学生性别 Sbirthday datetime,--出生年月 Class int--班级 ) truncate table Student--清空表格 insert into Student values(108,'曾华','男','197