LeetCode_sql_day24(1212.查询球队积分)

描述

表: Teams

+---------------+----------+
| Column Name   | Type     |
+---------------+----------+
| team_id       | int      |
| team_name     | varchar  |
+---------------+----------+
team_id 是该表具有唯一值的列。
表中的每一行都代表一支独立足球队。

表: Matches

+---------------+---------+
| Column Name   | Type    |
+---------------+---------+
| match_id      | int     |
| host_team     | int     |
| guest_team    | int     | 
| host_goals    | int     |
| guest_goals   | int     |
+---------------+---------+
match_id 是该表具有唯一值的列。
表中的每一行都代表一场已结束的比赛。
比赛的主客队分别由它们自己的 id 表示,他们的进球由 host_goals 和 guest_goals 分别表示。

你希望在所有比赛之后计算所有球队的比分。积分奖励方式如下:

  • 如果球队赢了比赛(即比对手进更多的球),就得 3 分。
  • 如果双方打成平手(即,与对方得分相同),则得 1 分。
  • 如果球队输掉了比赛(例如,比对手少进球),就 不得分 。

编写解决方案,以找出每个队的 team_idteam_name 和 num_points

返回的结果根据 num_points 降序排序,如果有两队积分相同,那么这两队按 team_id  升序排序

返回结果格式如下。

示例 1:

输入: Teams

table:
+-----------+--------------+
| team_id   | team_name    |
+-----------+--------------+
| 10        | Leetcode FC  |
| 20        | NewYork FC   |
| 30        | Atlanta FC   |
| 40        | Chicago FC   |
| 50        | Toronto FC   |
+-----------+--------------+
Matches
table:
+------------+--------------+---------------+-------------+--------------+
| match_id   | host_team    | guest_team    | host_goals  | guest_goals  |
+------------+--------------+---------------+-------------+--------------+
| 1          | 10           | 20            | 3           | 0            |
| 2          | 30           | 10            | 2           | 2            |
| 3          | 10           | 50            | 5           | 1            |
| 4          | 20           | 30            | 1           | 0            |
| 5          | 50           | 30            | 1           | 0            |
+------------+--------------+---------------+-------------+--------------+
输出:
+------------+--------------+---------------+
| team_id    | team_name    | num_points    |
+------------+--------------+---------------+
| 10         | Leetcode FC  | 7             |
| 20         | NewYork FC   | 3             |
| 50         | Toronto FC   | 3             |
| 30         | Atlanta FC   | 1             |
| 40         | Chicago FC   | 0             |
+------------+--------------+---------------+

数据准备

Create table If Not Exists Teams (team_id int, team_name varchar(30))
Create table If Not Exists Matches (match_id int, host_team int, guest_team int, host_goals int, guest_goals int)
Truncate table Teams
insert into Teams (team_id, team_name) values ('10', 'Leetcode FC')
insert into Teams (team_id, team_name) values ('20', 'NewYork FC')
insert into Teams (team_id, team_name) values ('30', 'Atlanta FC')
insert into Teams (team_id, team_name) values ('40', 'Chicago FC')
insert into Teams (team_id, team_name) values ('50', 'Toronto FC')
Truncate table Matches
insert into Matches (match_id, host_team, guest_team, host_goals, guest_goals) values ('1', '10', '20', '3', '0')
insert into Matches (match_id, host_team, guest_team, host_goals, guest_goals) values ('2', '30', '10', '2', '2')
insert into Matches (match_id, host_team, guest_team, host_goals, guest_goals) values ('3', '10', '50', '5', '1')
insert into Matches (match_id, host_team, guest_team, host_goals, guest_goals) values ('4', '20', '30', '1', '0')
insert into Matches (match_id, host_team, guest_team, host_goals, guest_goals) values ('5', '50', '30', '1', '0')

分析

法一:
①先计算出主队得分和客队得分情况

select host_team,guest_team,host_goals,guest_goals,casewhen host_goals > guest_goals then 3when host_goals = guest_goals then 1else 0 end host_points,casewhen host_goals < guest_goals then 3when host_goals = guest_goals then 1else 0 end guest_pointsfrom matches

②然后根据主队、客队得分情况求和

with t1 as (select host_team,guest_team,host_goals,guest_goals,casewhen host_goals > guest_goals then 3when host_goals = guest_goals then 1else 0 end host_points,casewhen host_goals < guest_goals then 3when host_goals = guest_goals then 1else 0 end guest_pointsfrom matches)select host_team, sum(host_points) points1from t1group by host_teamunion allselect guest_team, sum(guest_points) points1from t1group by guest_team

③连接两张表 根据球队分组 求总共的分数  此处是用teams左连接 获取到所有球队信息 

用ifnull函数 先对分数判空 如果为空则赋0

select team_id, team_name, sum(ifnull(points1, 0)) num_points
from teamsleft join t2on teams.team_id = t2.host_team
group by team_id, team_name
order by num_points desc, team_id

法二:

①先连接两张表  条件是 team_id = host_team or team_id = guest_team  并且为左连接

select team_id,team_name from Teams left join matches on team_id = host_team  or team_id = guest_team

②对各个球队得分进行定义

如果是根据主队id关联 那么主队赢了积三分

如果是根据客队id关联 那么客队赢了积三分

如果 主队得分=客队 那么不论根据什么关联 都积一分

否则就是零分

select team_id,team_name ,casewhen team_id = host_team and host_goals > guest_goals then 3when host_goals = guest_goals then 1when team_id = guest_team and host_goals < guest_goals then 3else 0 end num_points
from Teams left join matches on team_id = host_team  or team_id = guest_team

③然后根据上一步结果 进行分组排序 

select team_id,team_name ,sum(casewhen team_id = host_team and host_goals > guest_goals then 3when host_goals = guest_goals then 1when team_id = guest_team and host_goals < guest_goals then 3else 0 end )num_points
from Teams left join matches on team_id = host_team  or team_id = guest_team
group by team_id, team_name
order by num_points desc,team_id

代码

# 法一
with t1 as (select host_team,guest_team,host_goals,guest_goals,casewhen host_goals > guest_goals then 3when host_goals = guest_goals then 1else 0 end host_points,casewhen host_goals < guest_goals then 3when host_goals = guest_goals then 1else 0 end guest_pointsfrom matches), t2 as (select host_team, sum(host_points) points1from t1group by host_teamunion allselect guest_team, sum(guest_points) points1from t1group by guest_team)
select team_id, team_name, sum(ifnull(points1, 0)) num_points
from teamsleft join t2on teams.team_id = t2.host_team
group by team_id, team_name
order by num_points desc, team_id;
# 法二
select team_id,team_name ,sum(casewhen team_id = host_team and host_goals > guest_goals then 3when host_goals = guest_goals then 1when team_id = guest_team and host_goals < guest_goals then 3else 0 end )num_points
from Teams left join matches on team_id = host_team  or team_id = guest_team
group by team_id, team_name
order by num_points desc,team_id

总结

法一是先判断后连接

法二是先连接后判断

关键点是 两张表关联条件  和 赋分情况的考虑

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/54428.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

【笔记】2.1 半导体三极管(BJT,Bipolar Junction Transistor)

一、结构和符号 1. 三极管结构 常用的三极管的结构有硅平面管和锗合金管两种类型。各有PNP型和NPN型两种结构。 左图是NPN型硅平面三极管,右图是PNP型锗合金三极管。 从图中可见平面型三极管是先在一块大的金属板上注入杂质使之变成N型,然后再在中间注入杂质使之变成P型,…

Spring面试题-Spring是怎么解决循环依赖的?

Spring 使用了三级缓存来解决单例模式下的 setter 循环依赖问题。这三级缓存分别是&#xff1a; 一级缓存&#xff08;singletonObjects&#xff09;&#xff1a;用于存放完全初始化好的单例 Bean。 二级缓存&#xff08;earlySingletonObjects&#xff09;&#xff1a;用于存…

Note091203_Outlook邮件撤回操作

Note091203_Outlook邮件撤回操作 如图所示&#xff1a; step1: 打开outlook step2&#xff1a; 点击已发送邮件&#xff0c;选中目标撤回邮件双击打开&#xff1b; step3&#xff1a; 点击图中2框所示&#xff0c;可看见撤回操作&#xff1b; 以上

Linux操作系统 进程(3)

接上文 Linux进程优先级之后&#xff0c;我们了解到僵尸进程与孤儿进程的形成原因&#xff0c;既然是因为父进程没有接收子进程的退出状态导致的&#xff0c;那么我们该如何去获取子进程的退出状态呢&#xff1f;那本篇文章将围绕这个问题来解释进程。 环境 &#xff1a; vsco…

基于CNN的10种物体识别项目

一&#xff1a;数据导入和处理 1.导入相关包&#xff1a; import numpy as np import pandas as pd import matplotlib.pyplot as plt import tensorflow as tf2.下载数据 (x_train_all, y_train_all), (x_test, y_test) tf.keras.datasets.cifar10.load_data()# x_valid:测…

【Qt笔记】QTabWidget控件详解

目录 引言 一、基本功能 二、核心属性 2.1 标签页管理 2.2 标签位置 2.3 标签形状 2.4 标签可关闭性 2.5 标签可移动性 三、信号与槽 四、高级功能 4.1 动态添加和删除标签页 4.2 自定义标签页的关闭按钮行为 4.3 标签页的上下文菜单 五、样式设置 六、应用示例…

android 14.0 USB连接模式默认设为MTP

1.概述 在14.0android系统产品开发中,在通过otg连接设备的时候,会弹出usb连接模式这时候会让客户选择当前连接电脑是 哪种模式,在项目开发中,需要以mtp模式,就是可以在电脑查看设备的内部存储的样式来设置otg连接电脑的模式, 接下来分析下相关模式,来具体实现相关功能 …

快速使用react 全局状态管理工具--redux

redux Redux 是 JavaScript 应用中管理应用状态的工具&#xff0c;特别适用于复杂的、需要共享状态的中大型应用。Redux 的核心思想是将应用的所有状态存储在一个单一的、不可变的状态树&#xff08;state tree&#xff09;中&#xff0c;状态只能通过触发特定的 action 来更新…

Linux系统管理包命令大盘点

在Linux系统中&#xff0c;管理包的命令通常依赖于你使用的包管理器。不同的Linux发行版使用不同的包管理器。以下是一些常见的包管理器及其相关的命令&#xff1a; 一、Linux不同版本&#xff0c;包管理器及其命令 1. APT (Advanced Package Tool)- 主要用于Debian及其衍生版…

硬件基础知识

驱动开发分为&#xff1a;裸机驱动、linux驱动 嵌入式&#xff1a;以计算机技术为基础&#xff0c;软硬结合的、可移植、可剪裁的专用计算机 单片机最小单元&#xff1a;vcc gnd reset 晶振 cpu --- soc :system on chip 片上外设 所有的程序都是在soc&#xff08;cpu&…

学习贵在善假于物

以前我们学习&#xff0c;主要依赖于书本&#xff0c;老师。当然&#xff0c;还有必不可少的练习&#xff08;实践&#xff09;。 后来&#xff0c;搜索引擎的出现&#xff0c;打开了另一扇门&#xff0c;获取知识变得越来越方便快捷。 如今&#xff0c;人工智能的飞跃发展&a…

【Android安全】Ubuntu 16.04安装GDB和GEF

1. 安装GDB sudo apt install gdb-multiarch 2. 安装GEF(GDB Enhanced Features) 官网地址&#xff1a;https://github.com/hugsy/gef 2.1 安装2021.10版本 但是在Ubuntu 16.04上&#xff0c;bash -c "$(curl -fsSL https://gef.blah.cat/sh)"等命令不好使&…

Pandas语句

数据加载与保存 读取数据 pd.read_csv(‘filename.csv’)&#xff1a;读取 CSV 文件。 pd.read_excel(‘filename.xlsx’)&#xff1a;读取 Excel 文件。 pd.read_sql(query, connection_object)&#xff1a;从 SQL 数据库中读取数据。 pd.read_json(‘filename.json’)&#x…

蓝桥杯2024省C

P10898 [蓝桥杯 2024 省 C] 拼正方形 题目描述 小蓝正在玩拼图游戏&#xff0c;他有 7385137888721个 22的方块和 10470245 个 11 的方块&#xff0c;他需要从中挑出一些来拼出一个正方形&#xff0c;比如用 3 个 22 和 4 个 11 的方块可以拼出一个 44 的正方形&#xff0c;用…

深度学习自编码器 - 收缩自编码器(CAE)篇

序言 在深度学习的浪潮中&#xff0c;收缩自编码器&#xff08; Compressive Autoencoder, CAE \text{Compressive Autoencoder, CAE} Compressive Autoencoder, CAE&#xff09;作为自编码器的一种高级形式&#xff0c;正逐步崭露头角。收缩自编码器在保留自编码器核心功能—…

【贪心算法】贪心算法一

贪心算法一 1.柠檬水找零2.将数组和减半的最少操作次数3.最大数4.摆动序列 点赞&#x1f44d;&#x1f44d;收藏&#x1f31f;&#x1f31f;关注&#x1f496;&#x1f496; 你的支持是对我最大的鼓励&#xff0c;我们一起努力吧!&#x1f603;&#x1f603; 1.柠檬水找零 题目…

【安当产品应用案例100集】017-助力软件服务商高效集成多因素认证

一、企业案例背景 在本案例中&#xff0c;某企业作为一家软件技术服务商&#xff0c;为包括银行、政府机构在内的多个行业提供定制化的软件服务。由于各个行业的安全需求各异&#xff0c;例如银行和政府机构倾向于使用UKEY进行身份验证&#xff0c;而其他企业则可能偏好使用数…

创建Django 项目

创建一个新的 Django 项目&#xff1a; django-admin startproject myproject cd myproject 在 Django 项目中创建一个新的应用&#xff1a; python manage.py startapp myapp设置数据库 编辑 myproject/settings.py 文件中的数据库设置&#xff1a; DATABASES {default:…

OJ在线评测系统 前端开发设计优化通用菜单组件二 调试用户自动登录

通用的菜单组件开发二 接下来要完善 权限功能 就是只有登录后才能进入题目查看界面 用户只能看到我们有权限的菜单 我们要在路由文件里面去操作 原理是控制路由设置隐藏 只要用户没有权限 就过滤掉隐藏 全局权限管理 实现想清楚有那些权限 /*** 权限定义*/ const ACCES…

UAC2.0 麦克风——同时支持 16bit,24bit 和 32bit

UAC2.0 麦克风系列文章 UAC2.0 麦克风——单声道 USB 麦克风(16bit) UAC2.0 麦克风——类特殊请求 UAC2.0 麦克风——音量控制 UAC2.0 麦克风——多采样率支持 UAC2.0 麦克风——24/32bit 支持 UAC2.0 麦克风——麦克风数据传输 UAC2.0 麦克风——同时支持 16bit,24bit 和 …