Danke für den Link, aber mir ist immernoch nicht ganz klar, wie das ganze funktioniert.
Achso, außerdem hab ich auch noch was vergessen
Ich muss auch noch überprüfen, ob products_description.language_id = 1 ist.
Ich habe bisher das hier gebastelt:
Code:
SELECT
products.products_image, products_description.products_description,
FROM
products_description
LEFT JOIN
products
ON
products.products_id=products_description.products_id
WHERE
products.products_id = 44
AND
products_description.language_id = 1"
Allerdings erhalte ich diese Fehlermeldung:
Zitat:
|
You have an error in your SQL syntax. Check the manual that corresponds to your MySQL server version for the right syntax to use near 'FROM products_description LEFT JOIN
|
Was vermutlich einfach daran liegt, dass ich das mit dem JOIN nicht verstanden habe.
Ich bitte nochmals um Hilfe.
DANKE!