This select statement has an error .. what do i need to do for running this ? thx
i needed the nested statement to get NULL values too
select distinct
x.produkt_id,
y.farbe_text
from
(select distinct
a.produkt_id,
c.ausfuehrung_farbe_id,
c.ausfuehrung_groesse_id
from webshop_produkte a,
webshop_produkte_ausfuehrung_typ b,
webshop_produkte_ausfuehrung c
where a.ausfuehrung_typ_id = b.ausfuehrung_typ_id
and b.ausfuehrung_id = c.ausfuehrung_id) x,
webshop_produkte_farbe y
where x.ausfuehrung_farbe_id = y.farbe_id
i needed the nested statement to get NULL values too
select distinct
x.produkt_id,
y.farbe_text
from
(select distinct
a.produkt_id,
c.ausfuehrung_farbe_id,
c.ausfuehrung_groesse_id
from webshop_produkte a,
webshop_produkte_ausfuehrung_typ b,
webshop_produkte_ausfuehrung c
where a.ausfuehrung_typ_id = b.ausfuehrung_typ_id
and b.ausfuehrung_id = c.ausfuehrung_id) x,
webshop_produkte_farbe y
where x.ausfuehrung_farbe_id = y.farbe_id