首页 > 解决方案 > 需要帮助编写查询(重组表)

问题描述

我需要编写一个选择语句,它将以下列方式重写表......我不确定如何使用 MySQL 来解决这个问题。

表格示例

user_id   date         a    b    c     
123456    2020-01-01   1    1    1
234567    2020-03-04   1    0    0
453576    2020-05-05   1    0    1

期望的结果

user_id   date        results
123456    2020-01-01  a
123456    2020-01-01  b
123456    2020-01-01  c
234567    2020-03-04  a
453576    2020-05-05  a
453576    2020-05-05  c

标签: mysqlsqlunpivot

解决方案


在 MySQL 中,您可以使用union all, 同时过滤1值:

select user_id, date, 'a' as result from mytable where a = 1
union all select user_id, date, 'b' from mytable where b = 1
union all select user_id, date, 'c' from mytable where c = 1
order by user_id, date, result

推荐阅读