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

tablas pivotar/no pivotar mysql

No hay soporte para PIVOT. En su lugar, puede utilizar un JOIN. Por ejemplo:

SELECT Table1.Value AS AValue, Table2.Value AS BValue
FROM Table1
JOIN Table2 ON Table1.grp = Table2.grp AND Table2.Type = 'B'
WHERE Table1.Type = 'A'