sql-SQL练习生

2023-12-11 19:30
文章标签 sql database 练习生

本文主要是介绍sql-SQL练习生,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

推荐一款inscode内的模板SQL练习生,此文附带目前所有题的答案
如有错误欢迎斧正~

https://inscode.csdn.net/@TPEngineer/SQLBoy

为了更好的体验,请按下面的方法打开:

1.运行一下

在这里插入图片描述

2.等待加载

3.在网页打开

在这里插入图片描述

温馨提醒:此处做题不会保存进度,请自行记录做题情况

个人总结的答案(已涵盖目前的所有题,题库更新踢我)

文章目录

      • 练习
        • 1.基础语法 - 查询 - 全表查询
        • 2.基础语法 - 查询 - 选择查询
      • 主线关卡
        • 1.基础语法 - 查询 - 全表查询
        • 2.基础语法 - 查询 - 选择查询
        • 3.基础语法 - 查询 - 别名
        • 4.基础语法 - 查询 - 常量和运算
        • 5.基础语法 - 条件查询 - where
        • 6.基础语法 - 条件查询 - 运算符
        • 7.基础语法 - 条件查询 - 空值
        • 8.基础语法 - 条件查询 - 模糊查询
        • 9.基础语法 - 条件查询 - 逻辑运算
        • 10.基础语法 - 去重
        • 11.基础语法 - 排序
        • 12.基础语法 - 截断和偏移
        • 13.基础语法 - 条件分支
        • 14.函数 - 时间函数
        • 15.函数 - 字符串处理
        • 16.函数 - 聚合函数
        • 17.分组聚合 - 单字段分组
        • 18.分组聚合 - 多字段分组
        • 19.分组聚合 - having 子句
        • 20.查询进阶 - 关联查询 - cross join
        • 21.查询进阶 - 关联查询 - inner join
        • 22.查询进阶 - 关联查询 - outer join
        • 23.查询进阶 - 子查询
        • 24.查询进阶 - 子查询 - exists
        • 25.查询进阶 - 组合查询
        • 26.查询进阶 - 开窗函数 - sum over
        • 27.查询进阶 - 开窗函数 - sum over order by
        • 28.查询进阶 - 开窗函数 - rank
        • 29.查询进阶 - 开窗函数 - row_number
        • 30.查询进阶 - 开窗函数 - lag / lead
      • 自定义关卡
        • 冒险者和金币
        • 魔法学院
        • 大浪淘鸡

练习

1.基础语法 - 查询 - 全表查询
-- 请在此处输入 SQL
select * from student;
2.基础语法 - 查询 - 选择查询
-- 请在此处输入 SQL
select name,age from student;

主线关卡

1.基础语法 - 查询 - 全表查询
-- 请在此处输入 SQL
select * from student;
2.基础语法 - 查询 - 选择查询
-- 请在此处输入 SQL
select name,age from student;
3.基础语法 - 查询 - 别名
-- 请在此处输入 SQL
select name as 学生姓名,
age as 学生年龄
from student;
4.基础语法 - 查询 - 常量和运算
-- 请在此处输入 SQL
select name,score,2*score as double_score from student;
5.基础语法 - 条件查询 - where
-- 请在此处输入 SQL
select name,score 
from student
where name='鱼皮';
6.基础语法 - 条件查询 - 运算符
-- 请在此处输入 SQL
select name,age 
from student
where name!='热dog'
7.基础语法 - 条件查询 - 空值
-- 请在此处输入 SQL
select name,age,score 
from student
where age is not null;
8.基础语法 - 条件查询 - 模糊查询
-- 请在此处输入 SQL
select name,score 
from student
where name not like '%李%';
9.基础语法 - 条件查询 - 逻辑运算
-- 请在此处输入 SQL
select name,score 
from student
where name like '%李%'  or score>500;
10.基础语法 - 去重
-- 请在此处输入 SQL
select distinct class_id,exam_num 
from student;
11.基础语法 - 排序
-- 请在此处输入 SQL
select name,age,score 
from student
order by score desc,
age asc;
12.基础语法 - 截断和偏移
-- 请在此处输入 SQL
select name,age from student
order by age asc
limit 1,3;
13.基础语法 - 条件分支
-- 请在此处输入 SQL
select name,case when (age>60) then '老同学'when (age>20) then '年轻'else '小同学' end as age_level
from student
order by name asc;
14.函数 - 时间函数
-- 请在此处输入 SQL
select name,
date() as '当前日期' 
from student;
15.函数 - 字符串处理
-- 请在此处输入 SQL
select id ,
name ,
upper(name) as upper_name 
from student where name=='热dog';
16.函数 - 聚合函数
-- 请在此处输入 SQL
select sum(score) as total_score,
AVG(score) as avg_score,
MAX(score) as max_score,
MIN(score) as min_score from student;
17.分组聚合 - 单字段分组
-- 请在此处输入 SQL
select class_id,
AVG(score) as avg_score 
from student 
group by class_id;
18.分组聚合 - 多字段分组
-- 请在此处输入 SQL
select class_id,
exam_num,
Count(id) as total_num 
from student 
group by class_id,exam_num;
19.分组聚合 - having 子句
-- 请在此处输入 SQL
select class_id,
SUM(score) as total_score 
from student
group by class_id
having SUM(score)>150;
20.查询进阶 - 关联查询 - cross join
-- 请在此处输入 SQL
select s.name as student_name,
s.age as student_age,
s.class_id as class_id,
c.name as class_name
from student s 
cross join
class c;
21.查询进阶 - 关联查询 - inner join
-- 请在此处输入 SQL
select s.name as student_name,
s.age as student_age,
s.class_id as class_id,
c.name as class_name,
c.level as class_level
from student s
join class c on s.class_id=c.id;
22.查询进阶 - 关联查询 - outer join
-- 请在此处输入 SQL
select s.name as student_name,
s.age as student_age,
s.class_id as class_id,
c.name as class_name,
c.level as class_level
from student s
left join class c
on s.class_id=c.id;
23.查询进阶 - 子查询
-- 请在此处输入 SQL
select s.name,s.score,s.class_id
from student s
where s.class_id IN (SELECT  c.id FROM class c);
24.查询进阶 - 子查询 - exists
-- 请在此处输入 SQL
select name,age,class_id 
from student
where not exists(select 1from classwhere class.id==student.class_id
);
25.查询进阶 - 组合查询
-- 请在此处输入 SQL
select name,age,score,class_id 
from student
union all
select name,age,score,class_id
from student_new;
26.查询进阶 - 开窗函数 - sum over
-- 请在此处输入 SQL
select id,name,age,score,class_id,
avg(score) over (partition by class_id)
as class_avg_score 
from student;
27.查询进阶 - 开窗函数 - sum over order by
-- 请在此处输入 SQL
select id,name,age,score,class_id,
sum(score) over (partition by class_id 
order by score asc)
as class_sum_score
from student;
28.查询进阶 - 开窗函数 - rank
-- 请在此处输入 SQL
select id,name,age,score,class_id,
rank() over 
(partition by class_id order by score desc)
as ranking
from student;
29.查询进阶 - 开窗函数 - row_number
-- 请在此处输入 SQL
select id,name,age,score,class_id,
row_number() over
(partition by class_id order by score desc)
as row_number
from student;
30.查询进阶 - 开窗函数 - lag / lead
-- 请在此处输入 SQL
select id,name,age,score,class_id,
lag(name,1,null) over 
(partition by class_id order by score desc)
as prev_name,
lead(name,1,null) over 
(partition by class_id order by score desc)
as next_name
from student;

自定义关卡

冒险者和金币
-- 请在此处输入 SQL
select adventurer_id,adventurer_name,
sum(reward_coins) as total_reward_coins
from rewards
group by adventurer_id,adventurer_name
order by total_reward_coins desc
limit 3;
魔法学院
-- 请在此处输入 SQL
select student_id,student_name,subject_id,subject_name,score,
rank() over (partition by subject_id order by score desc)
as score_rank
from magic_scores;
大浪淘鸡
-- 请在此处输入 SQL
select observer_name,observation_date,wave_intensity from chicken_observation
where observation_location like '%大浪淘鸡%'
and wave_intensity >5;

这篇关于sql-SQL练习生的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/481856

相关文章

MySQL查询JSON数组字段包含特定字符串的方法

《MySQL查询JSON数组字段包含特定字符串的方法》在MySQL数据库中,当某个字段存储的是JSON数组,需要查询数组中包含特定字符串的记录时传统的LIKE语句无法直接使用,下面小编就为大家介绍两种... 目录问题背景解决方案对比1. 精确匹配方案(推荐)2. 模糊匹配方案参数化查询示例使用场景建议性能优

mysql表操作与查询功能详解

《mysql表操作与查询功能详解》本文系统讲解MySQL表操作与查询,涵盖创建、修改、复制表语法,基本查询结构及WHERE、GROUPBY等子句,本文结合实例代码给大家介绍的非常详细,感兴趣的朋友跟随... 目录01.表的操作1.1表操作概览1.2创建表1.3修改表1.4复制表02.基本查询操作2.1 SE

MySQL中的锁机制详解之全局锁,表级锁,行级锁

《MySQL中的锁机制详解之全局锁,表级锁,行级锁》MySQL锁机制通过全局、表级、行级锁控制并发,保障数据一致性与隔离性,全局锁适用于全库备份,表级锁适合读多写少场景,行级锁(InnoDB)实现高并... 目录一、锁机制基础:从并发问题到锁分类1.1 并发访问的三大问题1.2 锁的核心作用1.3 锁粒度分

MySQL数据库中ENUM的用法是什么详解

《MySQL数据库中ENUM的用法是什么详解》ENUM是一个字符串对象,用于指定一组预定义的值,并可在创建表时使用,下面:本文主要介绍MySQL数据库中ENUM的用法是什么的相关资料,文中通过代码... 目录mysql 中 ENUM 的用法一、ENUM 的定义与语法二、ENUM 的特点三、ENUM 的用法1

MySQL count()聚合函数详解

《MySQLcount()聚合函数详解》MySQL中的COUNT()函数,它是SQL中最常用的聚合函数之一,用于计算表中符合特定条件的行数,本文给大家介绍MySQLcount()聚合函数,感兴趣的朋... 目录核心功能语法形式重要特性与行为如何选择使用哪种形式?总结深入剖析一下 mysql 中的 COUNT

mysql中的服务器架构详解

《mysql中的服务器架构详解》:本文主要介绍mysql中的服务器架构,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录1、背景2、mysql服务器架构解释3、总结1、背景简单理解一下mysqphpl的服务器架构。2、mysjsql服务器架构解释mysql的架

MySQL之InnoDB存储引擎中的索引用法及说明

《MySQL之InnoDB存储引擎中的索引用法及说明》:本文主要介绍MySQL之InnoDB存储引擎中的索引用法及说明,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐... 目录1、背景2、准备3、正篇【1】存储用户记录的数据页【2】存储目录项记录的数据页【3】聚簇索引【4】二

mysql中的数据目录用法及说明

《mysql中的数据目录用法及说明》:本文主要介绍mysql中的数据目录用法及说明,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录1、背景2、版本3、数据目录4、总结1、背景安装mysql之后,在安装目录下会有一个data目录,我们创建的数据库、创建的表、插入的

MySQL中的InnoDB单表访问过程

《MySQL中的InnoDB单表访问过程》:本文主要介绍MySQL中的InnoDB单表访问过程,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录1、背景2、环境3、访问类型【1】const【2】ref【3】ref_or_null【4】range【5】index【6】

MySQL 中 ROW_NUMBER() 函数最佳实践

《MySQL中ROW_NUMBER()函数最佳实践》MySQL中ROW_NUMBER()函数,作为窗口函数为每行分配唯一连续序号,区别于RANK()和DENSE_RANK(),特别适合分页、去重... 目录mysql 中 ROW_NUMBER() 函数详解一、基础语法二、核心特点三、典型应用场景1. 数据分