Select multiple sums with MySQL query and display them in separate columns(使用 MySQL 查询选择多个总和并将它们显示在单独的列中)
问题描述
假设我有一个假设的表格,用来记录某些游戏中的某个玩家何时得分:
Let's say I have a hypothetical table like so that records when some player in some game scores a point:
name points
------------
bob 10
mike 03
mike 04
bob 06
如何获得每个玩家的总得分并在一个查询中并排显示?
How would I get the sum of each player's scores and display them side by side in one query?
总分表
bob mike
16 07
我的(伪)查询是:
SELECT sum(points) as "Bob" WHERE name="bob",
sum(points) as "Mike" WHERE name="mike"
FROM score_table
推荐答案
您可以手动"旋转数据:
You can pivot your data 'manually':
SELECT SUM(CASE WHEN name='bob' THEN points END) as bob,
SUM(CASE WHEN name='mike' THEN points END) as mike
FROM score_table
但如果你的玩家列表是动态的,这将不起作用.
but this will not work if the list of your players is dynamic.
这篇关于使用 MySQL 查询选择多个总和并将它们显示在单独的列中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 MySQL 查询选择多个总和并将它们显示在单独的列中
基础教程推荐
- SQL Server 2016更改对象所有者 2022-01-01
- SQL Server 中单行 MERGE/upsert 的语法 2021-01-01
- 如何在 SQL Server 的嵌套过程中处理事务? 2021-01-01
- 将数据从 MS SQL 迁移到 PostgreSQL? 2022-01-01
- Sql Server 字符串到日期的转换 2021-01-01
- 使用pyodbc“不安全"的Python多处理和数据库访问? 2022-01-01
- ERROR 2006 (HY000): MySQL 服务器已经消失 2021-01-01
- SQL Server:只有 GROUP BY 中的最后一个条目 2021-01-01
- 在 VB.NET 中更新 SQL Server DateTime 列 2021-01-01
- 无法在 ubuntu 中启动 mysql 服务器 2021-01-01