O wiele łatwiej jest po prostu użyć agregacji warunkowej:
select id,
max(case when type = 'A' then value end) as a,
max(case when type = 'B' then value end) as b,
max(case when type = 'C' then value end) as c
from t
group by id;
Możesz wstawić wyniki do tabeli za pomocą create table as
. To powinno działać również z zapytaniem przestawnym.