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

相关文章

SQL表间关联查询实例详解

《SQL表间关联查询实例详解》本文主要讲解SQL语句中常用的表间关联查询方式,包括:左连接(leftjoin)、右连接(rightjoin)、全连接(fulljoin)、内连接(innerjoin)、... 目录简介样例准备左外连接右外连接全外连接内连接交叉连接自然连接简介本文主要讲解SQL语句中常用的表

SQL server配置管理器找不到如何打开它

《SQLserver配置管理器找不到如何打开它》最近遇到了SQLserver配置管理器打不开的问题,尝试在开始菜单栏搜SQLServerManager无果,于是将自己找到的方法总结分享给大家,对SQ... 目录方法一:桌面图标进入方法二:运行窗口进入方法三:查找文件路径方法四:检查 SQL Server 安

MySQL 中的 LIMIT 语句及基本用法

《MySQL中的LIMIT语句及基本用法》LIMIT语句用于限制查询返回的行数,常用于分页查询或取部分数据,提高查询效率,:本文主要介绍MySQL中的LIMIT语句,需要的朋友可以参考下... 目录mysql 中的 LIMIT 语句1. LIMIT 语法2. LIMIT 基本用法(1) 获取前 N 行数据(

MySQL 分区与分库分表策略应用小结

《MySQL分区与分库分表策略应用小结》在大数据量、复杂查询和高并发的应用场景下,单一数据库往往难以满足性能和扩展性的要求,本文将详细介绍这两种策略的基本概念、实现方法及优缺点,并通过实际案例展示如... 目录mysql 分区与分库分表策略1. 数据库水平拆分的背景2. MySQL 分区策略2.1 分区概念

MySQL高级查询之JOIN、子查询、窗口函数实际案例

《MySQL高级查询之JOIN、子查询、窗口函数实际案例》:本文主要介绍MySQL高级查询之JOIN、子查询、窗口函数实际案例的相关资料,JOIN用于多表关联查询,子查询用于数据筛选和过滤,窗口函... 目录前言1. JOIN(连接查询)1.1 内连接(INNER JOIN)1.2 左连接(LEFT JOI

MySQL 中查询 VARCHAR 类型 JSON 数据的问题记录

《MySQL中查询VARCHAR类型JSON数据的问题记录》在数据库设计中,有时我们会将JSON数据存储在VARCHAR或TEXT类型字段中,本文将详细介绍如何在MySQL中有效查询存储为V... 目录一、问题背景二、mysql jsON 函数2.1 常用 JSON 函数三、查询示例3.1 基本查询3.2

MySQL中动态生成SQL语句去掉所有字段的空格的操作方法

《MySQL中动态生成SQL语句去掉所有字段的空格的操作方法》在数据库管理过程中,我们常常会遇到需要对表中字段进行清洗和整理的情况,本文将详细介绍如何在MySQL中动态生成SQL语句来去掉所有字段的空... 目录在mysql中动态生成SQL语句去掉所有字段的空格准备工作原理分析动态生成SQL语句在MySQL

MySQL中FIND_IN_SET函数与INSTR函数用法解析

《MySQL中FIND_IN_SET函数与INSTR函数用法解析》:本文主要介绍MySQL中FIND_IN_SET函数与INSTR函数用法解析,本文通过实例代码给大家介绍的非常详细,感兴趣的朋友一... 目录一、功能定义与语法1、FIND_IN_SET函数2、INSTR函数二、本质区别对比三、实际场景案例分

MySQL中的交叉连接、自然连接和内连接查询详解

《MySQL中的交叉连接、自然连接和内连接查询详解》:本文主要介绍MySQL中的交叉连接、自然连接和内连接查询,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录一、引入二、交php叉连接(cross join)三、自然连接(naturalandroid join)四

Mysql如何将数据按照年月分组的统计

《Mysql如何将数据按照年月分组的统计》:本文主要介绍Mysql如何将数据按照年月分组的统计方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教... 目录mysql将数据按照年月分组的统计要的效果方案总结Mysql将数据按照年月分组的统计要的效果方案① 使用 DA