Neexistuje žádná podpora pro PIVOT. Místo toho můžete použít JOIN. Například:
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'
Neexistuje žádná podpora pro PIVOT. Místo toho můžete použít JOIN. Například:
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'