sql >> Base de Datos >  >> RDS >> Mysql

SQL:seleccione la columna como

Si tiene un número fijo de identificaciones de idioma, puede hacer esto como:

select id,
       max(case when LanguageId = 1 then text end) as "1",
       max(case when LanguageId = 2 then text end) as "2",
       max(case when LanguageId = 3 then text end) as "3"
from t
group by id;

Si no conoce los identificadores de idioma de antemano, debe usar SQL dinámico para construir la consulta y luego prepararla y ejecutarla.

Si languageid es dinámico:

select @s = concat('select id',
                   group_concat(concat(', max(case when LanguageId = ',
                                       LanguageId,
                                       ' then text end) as "',
                                       LanguageId, '"'
                                      )
                               ),
                   ' from t group by id'
                  )
from (select distinct LanguageId from t) t;

PREPARE stmt1 FROM @s;
EXECUTE stmt1;
DEALLOCATE PREPARE stmt1;