我们如何在 MySQL 中的这种情况下进行旋转

Posted

技术标签:

【中文标题】我们如何在 MySQL 中的这种情况下进行旋转【英文标题】:How can we pivot in this scenario in MySQL 【发布时间】:2018-08-07 10:07:27 【问题描述】:

我有这张桌子:

+----------+--------+-----+--------+--------+
| personId | Name   | Age | height | weight |
+----------+--------+-----+--------+--------+
| 1        | Aritra | 20  | 5.6    | 56     |
| 1        | Aritra | 30  | 5.6    | 76     |
+----------+--------+-----+--------+--------+

但要求输出是这样的:

+---------------+----------+--------------+----------+
| AttributeName | personId | Presentvalue | OldValue |
+---------------+----------+--------------+----------+
| Height        | 1        | 5.6          | 5.6      |
| weight        | 1        | 76           | 56       |
+---------------+----------+--------------+----------+

我尝试使用 pivot 来解决这个问题,但遇到了问题。使用或不使用数据透视表,我该怎么做?

谢谢。

【问题讨论】:

请避开有问题的图片 提供样本数据以获得好的答案@aritra 到目前为止你尝试过什么?您面临哪个确切问题? 【参考方案1】:

union all 可能是最简单的方法了:

select 'Height' as attributeName, personId,
       (case when age = 30 then height end) as newValue,
       (case when age = 20 then height end) as oldValue
from t 
union all
select 'Weight' as attributeName, personId,
       (case when age = 30 then weight end) as newValue,
       (case when age = 20 then weight end) as oldValue;

【讨论】:

以上是关于我们如何在 MySQL 中的这种情况下进行旋转的主要内容,如果未能解决你的问题,请参考以下文章

如何在没有聚合的情况下进行旋转?

如何旋转页面,PDF页面如何旋转并保存

如何在某些情况下停止 iPad 旋转?

在这种情况下如何使用 UNION (MySQL) [重复]

如何在不使用数据库的情况下进行登录

在这种情况下,如何获得外部 foreach 循环值?