Oracle
 sql >> Database >  >> RDS >> Oracle

Unisci/Pivot elementi con la tabella EAV

Dovresti essere in grado di utilizzare una funzione di aggregazione con un'espressione CASE per convertire le righe in colonne:

select d.id,
  d.name,
  max(case when a.attr_name = 'color' then a.value end) color,
  max(case when a.attr_name = 'brand' then a.value end) brand,
  max(case when a.attr_name = 'size' then a.value end) size
from product_description d
inner join product_attributes a
  on d.id = a.id
group by d.id, d.name;

Vedi SQL Fiddle con demo .

Poiché stai utilizzando Oracle 11g, puoi utilizzare la funzione PIVOT per ottenere il risultato:

select id, name, Color, Brand, "Size"
from
(
  select d.id, d.name,
    a.attr_name, a.value
  from product_description d
  inner join product_attributes a
    on d.id = a.id
) src
pivot
(
  max(value)
  for attr_name in ('color' as Color,
                    'brand' as Brand,
                    'size' as "Size")
) p;

Vedi SQL Fiddle con demo