kosovafan
Erfahrenes Mitglied
Hallo,
Tabelle A:
- xt_plg_products_to_attributes (alles Zahlen)
-- products_id, (Artikelnr.)
-- attributes_id, (Variante zb. Durchmesser)
-- attributes_parent_id (Master Variante wie zb Innen, Länge, Breite etc.)
Tabelle B
- xt_plg_products_attributes_description
-- attributes_id (ID nummerisch)
-- attributes_name (Name als Text der ID)
Wie kann ich es schaffen das beim abfragen der xt_plg_products_to_attributes die attributes_id und die attributes_parent_id der Tabelle A anstatt die Zahlen die Texte aus Tabelle B genutzt werden.
Das Ziel wäre eine Ausgabe wie:
Hat hier jemand Rat?
Danke & Gruß
Silvio
Tabelle A:
- xt_plg_products_to_attributes (alles Zahlen)
-- products_id, (Artikelnr.)
-- attributes_id, (Variante zb. Durchmesser)
-- attributes_parent_id (Master Variante wie zb Innen, Länge, Breite etc.)
Tabelle B
- xt_plg_products_attributes_description
-- attributes_id (ID nummerisch)
-- attributes_name (Name als Text der ID)
Wie kann ich es schaffen das beim abfragen der xt_plg_products_to_attributes die attributes_id und die attributes_parent_id der Tabelle A anstatt die Zahlen die Texte aus Tabelle B genutzt werden.
SQL:
SELECT
xppta.products_id,
xppta.attributes_id,
xppta.attributes_parent_id,
xppad.attributes_name
FROM
xt_plg_products_to_attributes xppta
JOIN xt_plg_products_attributes_description xppad ON xppta.attributes_id = xppad.attributes_name
Das Ziel wäre eine Ausgabe wie:
Code:
products_id|atrributes_id|attributes_parent_id
512|19mm|Innen
512|Meter|Länge
513|19mm|Innen
513|5m|Länge
...
.
Hat hier jemand Rat?
Danke & Gruß
Silvio