Mysql
 sql >> Database >  >> RDS >> Mysql

Necessità di convertire colonne in righe in MySQL

Potrebbe essere al di sotto della soluzione che ti aiuta a risolvere il tuo problema, devi apportare alcune modifiche secondo la struttura della tua tabella.

Per questa soluzione devi creare una stored procedure.

Se questa è la struttura della tua tabella :

CREATE TABLE `school` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(500) DEFAULT NULL,
  `value` varchar(45) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8;
SET FOREIGN_KEY_CHECKS=1;

La soluzione di seguito funziona se sopra è la struttura della tua tabella.

   SET SESSION group_concat_max_len = (2056 * 2056);

SET @sql = NULL;

SELECT GROUP_CONCAT(DISTINCT
             CONCAT(
               'MAX(CASE WHEN school.name ="',m.name,'"'
                                ' THEN school.value END)"',m.name , '"'))
                                INTO @sql  
                                            from school as m;

SET @sql = CONCAT('SELECT value,',@sql,
                  ' FROM school');


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

Apporta modifiche secondo la struttura della tua tabella.

Questa soluzione è utile anche per più tavoli, spero che questo possa aiutarti a risolvere il tuo problema.