SQL学习:第六天


综合练习

练习一: 各部门工资最高的员工

创建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);

在这里插入图片描述

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值