- Teambeitrag
Also beim ersten ist das Query falsch. Wenn du zwei JOINs hast musst du auch zwei mal festlegen auf was sich die Tabellen beziehen sollen, da fehlt also das ON:
SQL
SELECT *
FROM wcf".WCF_N."_customer_storage a
LEFT JOIN wcf".WCF_N."_customer_product b
ON (b.productID = a.productID)
LEFT JOIN wcf".WCF_N."_option c
ON (b.productID = c.productID)
Das ist jetzt nur ein Beispiel.
http://aktuell.de.selfhtml.org/artikel/datenb…hrfachjoin1.htm