将行旋转到列中

时间:2015-01-15 20:32:54

标签: sql pivot mariadb

我有一个生成以下内容的SQL查询:

col1  | col2 | col3
=====================
item1 | key1 | value1
---------------------
item1 | key2 | value2

这是查询:

SELECT t1.col1, t2.col2, t2.col3
FROM table1 t1
JOIN table2 t2 ON t1.id = t1.table1_id

表1中的数据:

id | col1
=========
1  | item1
2  | item1

表2中的数据:

table1_id | col2 | col3
=====================
1         | key1 | item1
1         | key2 | item2
2         | key1 | item1
2         | key2 | item2
2         | key3 | item3

行数是动态的,所以在某些情况下我也可以得到以下内容:

col1  | col2 | col3
=====================
item2 | key1 | value1
---------------------
item2 | key2 | value2
---------------------
item2 | key3 | value3

我希望第一个查询结束的方式是:

col1  | key1   | key2
=======================
item1 | value1 | value2

第二个问题是:

col1  | key1   | key2   | key3
==============================
item2 | value1 | value2 | value3

有没有一种简单的方法可以做到这一点,而不会过度复杂的东西?我正在使用MariaDB。

1 个答案:

答案 0 :(得分:0)

我想你想要这个查询:

SET SESSION group_concat_max_len = 1000000;

SET @sql = NULL;
SELECT
GROUP_CONCAT(DISTINCT
    CONCAT(
      'MAX(CASE WHEN t2.col2= ''',
      t2.col2,
      ''' THEN t2.col3 END) AS ',
      t2.col2
    )
   )INTO @sql
FROM  
     t1
JOIN  t2 ON t1.id = t2.table1_id
;


SET @sql=CONCAT('SELECT t1.col1, ',@sql,' FROM   
     t1
JOIN  t2 ON t1.id = t2.table1_id');

PREPARE stmt FROM @sql;
EXECUTE stmt;
DEALLOCATE PREPARE stmt;

FIDDLE

如果您有不同的项目,您可能希望按项目分组

FIDDLE