综合练习
练习一: 各部门工资最高的员工
创建Employee 表,包含所有员工信息,每个员工有其对应的 Id, salary 和 department Id
create table Employee(
Id char(4) not null ,
Name varchar(8) not null,
Salary integer ,
Departmentid integer ,
primary key (Id));
insert into Employee values ('1','Joe', 70000, 1),('2','Henry', 80000, 2),('3','Sam', 60000, 2),('4','Max', 90000, 1);
创建Department 表,包含公司所有部门的信息
create table Department(
Id char(4) not null,
Name varchar(8) not null,
primary key (Id));
insert into Department values ('1','IT'),('2','Sales');
练习二: 换座位
小美是一所中学的信息科技老师,她有一张 seat 座位表,平时用来储存学生名字和与他们相对应的座位 id。
其中纵列的id是连续递增的
小美想改变相邻俩学生的座位。
create table seat(
id int not null auto_increment,
student varchar(8) not null,
primary key (id));
insert into seat (student) values ('Abbot'),('Doris'),('Emerson'),('Green'),('Jeames');
练习三: 分数排名
创建以下score表
create table scores(
Id int not null auto_increment,
Score float not null,
primary key(Id));
insert into scores (Score) values (3.50),(3.65),(4.00),(3.85),(4.00),(3.65);
练习四:连续出现的数字
编写一个 SQL 查询,查找所有至少连续出现三次的数字
create table Logs(
Id int not null auto_increment,
Num int not null,
primary key(Id));
insert into Logs (Num) values (1),(1),(2),(1),(2),(2);
练习五:树节点
create table tree(
id int not null auto_increment,
p_id int,
primary key (id));
insert into tree (p_id) values (null),(1),(1),(2),(2);
练习六:至少有五名直接下属的经理
Employee表包含所有员工及其上级的信息。每位员工都有一个Id,并且还有一个对应主管的Id(ManagerId)
create table Employee1(
Id int not null,
Name varchar(8) not null,
Department char(1) not null,
ManagerId int,
primary key (Id));
insert into Employee1 values (101, 'John', 'A', null),(102, 'Dan', 'A', 101),(103, 'James', 'A', 101),(104, 'Amy', 'A', 101),(105, 'Anne', 'A', 101),(106, 'Ron', 'B', 101);
练习七:查询回答率最高的问题
求出survey_log表中回答率最高的问题,表格的字段有:uid, action, question_id, answer_id, q_num, timestamp。
uid是用户id;action的值为:“show”, “answer”, “skip”;当action是"answer"时,answer_id不为空,相反,当action是"show"和"skip"时为空(null);q_num是问题的数字序号
create table survey_log(
uid int not null,
action varchar(8) not null,
question_id int not null,
answer_id int,
q_num int not null,
timestamp int not null,
primary key(timestamp));
insert into survey_log values (5, 'show', 285, null, 1, 123),(5, 'answer', 285, 124124, 1, 124),(5, 'show', 369, null, 2, 125),(5, 'skip', 369, null, 2, 126);