LeetCode_SQL练习(二)

196. 删除重复的电子邮箱

表: Person

+-------------+---------+
| Column Name | Type    |
+-------------+---------+
| id          | int     |
| email       | varchar |
+-------------+---------+

id 是该表的主键列(具有唯一值的列)。

该表的每一行包含一封电子邮件。电子邮件将不包含大写字母。

sql 复制代码
# Write your MySQL query statement below
DELETE FROM Person
WHERE id NOT IN (
    SELECT min_id
    FROM (
        SELECT MIN(id) AS min_id
        FROM Person
        GROUP BY LOWER(email)
    ) t
)

在 SQL 查询中,子查询可以作为一个临时表来使用。t 是给这个临时表起的别名。
在上述查询中,内部的子查询使用了别名 t 来表示结果集。通过为子查询结果集指定一个别名,我们可以在外部查询中引用该别名来访问子查询的结果。
这样做的好处是,我们可以在外部查询中对子查询的结果进行进一步的处理,例如使用 NOT IN 子句来过滤不在子查询结果中的记录。

1407. 排名靠前的旅行者

表:Users

+---------------+---------+
| Column Name   | Type    |
+---------------+---------+
| id            | int     |
| name          | varchar |
+---------------+---------+
id 是该表中具有唯一值的列。
name 是用户名字。

表:Rides

+---------------+---------+
| Column Name   | Type    |
+---------------+---------+
| id            | int     |
| user_id       | int     |
| distance      | int     |
+---------------+---------+
id 是该表中具有唯一值的列。
user_id 是本次行程的用户的 id, 而该用户此次行程距离为 distance 。

编写解决方案,报告每个用户的旅行距离。

返回的结果表单,以 travelled_distance 降序排列 ,如果有两个或者更多的用户旅行了相同的距离, 那么再以 name 升序排列 。

sql 复制代码
SELECT Users.name, COALESCE(SUM(Rides.distance), 0) AS travelled_distance
FROM Users
LEFT JOIN Rides ON Users.id = Rides.user_id
GROUP BY Users.id, Users.name
ORDER BY travelled_distance DESC, Users.name ASC;

这条查询语句使用了左连接(LEFT JOIN)将两张表关联起来,并通过 GROUP BY 子句按用户 id 和名称分组。使用 COALESCE 函数将 NULL 值转换为 0,以处理没有行程记录的情况。最后,按 travelled_distance 降序和 name 升序进行排序。

197. 上升的温度

SQL Schema

表: Weather

+---------------+---------+
| Column Name   | Type    |
+---------------+---------+
| id            | int     |
| recordDate    | date    |
| temperature   | int     |
+---------------+---------+
在 SQL 中,id 是该表的主键。
该表包含特定日期的温度信息

找出与之前(昨天的)日期相比温度更高的所有日期的 id 。

返回结果 无顺序要求 。

sql 复制代码
# Write your MySQL query statement below
SELECT
    t1.id
FROM
    Weather t1
JOIN
    Weather t2
ON
    t1.recordDate = DATE_ADD(t2.recordDate, INTERVAL 1 DAY)
WHERE
    t1.Temperature > t2.Temperature;

577. 员工奖金

选出所有 bonus < 1000 的员工的 name 及其 bonus。

Employee 表单

+-------+--------+-----------+--------+
| empId |  name  | supervisor| salary |
+-------+--------+-----------+--------+
|   1   | John   |  3        | 1000   |
|   2   | Dan    |  3        | 2000   |
|   3   | Brad   |  null     | 4000   |
|   4   | Thomas |  3        | 4000   |
+-------+--------+-----------+--------+
empId 是这张表单的主关键字

Bonus 表单

+-------+-------+
| empId | bonus |
+-------+-------+
| 2     | 500   |
| 4     | 2000  |
+-------+-------+
empId 是这张表单的主关键字

输出示例:

+-------+-------+
| name  | bonus |
+-------+-------+
| John  | null  |
| Dan   | 500   |
| Brad  | null  |
+-------+-------+
sql 复制代码
# Write your MySQL query statement below
SELECT 
    Employee.name, Bonus.bonus
From
    Employee
LEFT JOIN
    Bonus
ON
    Employee.empId = Bonus.empId
WHERE
    Bonus.bonus < 1000 OR Bonus.bonus IS null;
相关推荐
Ahern_30 分钟前
Oracle 普通表至分区表的分区交换
大数据·数据库·sql·oracle
冠位观测者1 小时前
【Leetcode 热题 100】124. 二叉树中的最大路径和
数据结构·算法·leetcode
m0_748233641 小时前
SQL数组常用函数记录(Map篇)
java·数据库·sql
m0_675988232 小时前
Leetcode3218. 切蛋糕的最小总开销 I
c++·算法·leetcode·职场和发展
axxy20007 小时前
leetcode之hot100---24两两交换链表中的节点(C++)
c++·leetcode·链表
chenziang18 小时前
leetcode hot100 环形链表2
算法·leetcode·链表
m0_7482338810 小时前
SQL语句整理五-StarRocks
数据库·sql
呆呆的猫11 小时前
【LeetCode】227、基本计算器 II
算法·leetcode·职场和发展
Tisfy11 小时前
LeetCode 1705.吃苹果的最大数目:贪心(优先队列) - 清晰题解
算法·leetcode·优先队列·贪心·
虽千万人 吾往矣13 小时前
golang LeetCode 热题 100(动态规划)-更新中
算法·leetcode·动态规划