Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Dynamische Spalten in Zeilen transponieren

MySQL hat keine UNPIVOT-Funktion, aber Sie können Ihre Spalten mit UNION ALL in Zeilen umwandeln .

Die grundlegende Syntax ist:

select id, word, qty
from
(
  select id, 'abc' word, abc qty
  from yt
  where abc > 0
  union all
  select id, 'brt', brt
  from yt
  where brt > 0
) d
order by id;

In Ihrem Fall geben Sie an, dass Sie eine Lösung für dynamische Spalten benötigen. Wenn dies der Fall ist, müssen Sie eine vorbereitete Anweisung verwenden, um dynamisches SQL zu generieren:

SET @sql = NULL;

SELECT
  GROUP_CONCAT(DISTINCT
    CONCAT(
      'select id, ''',
      c.column_name,
      ''' as word, ',
      c.column_name,
      ' as qty 
      from yt 
      where ',
      c.column_name,
      ' > 0'
    ) SEPARATOR ' UNION ALL '
  ) INTO @sql
FROM information_schema.columns c
where c.table_name = 'yt'
  and c.column_name not in ('id')
order by c.ordinal_position;

SET @sql 
  = CONCAT('select id, word, qty
           from
           (', @sql, ') x  order by id');


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

Siehe SQL Fiddle mit Demo