Sfortunatamente, MySQL non ha un PIVOT
funzione ma puoi modellarlo usando una funzione aggregata e un CASE
dichiarazione. Per una versione dinamica, dovrai utilizzare istruzioni preparate:
SET @sql = NULL;
SELECT
GROUP_CONCAT(DISTINCT
CONCAT(
'max(case when part_type = ''',
part_type,
''' then part_id end) AS part_',
part_type, '_id'
)
) INTO @sql
FROM
parts;
SET @sql = CONCAT('SELECT product_id, ', @sql, '
FROM parts
GROUP BY product_id');
PREPARE stmt FROM @sql;
EXECUTE stmt;
DEALLOCATE PREPARE stmt;
Vedi SQL Fiddle With Demo
Se hai solo poche colonne, puoi utilizzare una versione statica:
select product_id,
max(case when part_type ='A' then part_id end) as Part_A_Id,
max(case when part_type ='B' then part_id end) as Part_B_Id
from parts
group by product_id