doukun0888 2013-11-05 02:44
浏览 137
已采纳

MySQL数据透视表 - 将行转换为列

This is the structure of my table: enter image description here

Then I run a query

SELECT `date`,`index_name`,`results` FROM `mst_ind` WHERE `index_name` IN ('MSCI EAFE Mid NR USD', 'Alerian MLP PR USD') AND `time_period`='M1'

and get a table like

enter image description here

How can I convert "index_name" rows to columns like:

date | MSCI EAFE Mid NR USD | Alerian MLP PR USD etc

enter image description here

In other words I need each column to represent an index and rows to represent date-result. I understand that MySQL doesn't have pivot table functions. What is the easiest way of doing this?

I've tried this code, but it generates an error:

SELECT
  `date`,
  MAX(IF(index_name = 'Alerian MLP PR USD' AND `time_period`='M1', results, NULL)) AS res1,
  MAX(IF(index_name = 'MSCI EAFE Mid NR USD' AND `time_period`='M1', results, NULL)) AS res2
FROM
  `mst_ind`
GROUP BY `date

I need to make the conversion on the query level - not PHP. Please suggest a nice and elegant solution. Thanks!

  • 写回答

1条回答 默认 最新

  • douyinliu8813 2013-11-05 03:51
    关注

    Try

    SELECT date,
           MAX(CASE WHEN index_name = 'Alerian MLP PR USD' THEN results END) `Alerian MLP PR USD`,
           MAX(CASE WHEN index_name = 'MSCI EAFE Mid NR USD' THEN results END) `MSCI EAFE Mid NR USD`
      FROM mst_ind
     WHERE index_name IN ('MSCI EAFE Mid NR USD', 'Alerian MLP PR USD') 
       AND time_period = 'M1'
     GROUP BY date
    

    Sample output:

    |       DATE | ALERIAN MLP PR USD | MSCI EAFE MID NR USD |
    |------------|--------------------|----------------------|
    | 1995-01-31 |            -0.0167 |               0.0335 |
    | 1995-02-28 |             0.0128 |               0.0409 |
    | 1995-03-31 |             0.0464 |               0.0286 |
    | 1995-04-28 |             0.0331 |               0.0297 |
    | 1995-05-31 |             0.0069 |               0.0398 |
    ...
    

    Here is SQLFiddle demo

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog
  • ¥15 Excel发现不可读取的内容
  • ¥15 关于#stm32#的问题:CANOpen的PDO同步传输问题