What's wrong with this code?
FROM product_tag, ps_product_tags_all
LEFT JOIN users ON
users.id = product_tag.lang
LEFT JOIN images ON
images.id = ps_product_tags_all.lang
Error:
Unknown column 'product_tag.lang' in 'on clause'
|
What's wrong with this code?
Error:
| |||||
feedback
|
|
You are mixing implicit and explicit joins and joining in the wrong order. Try this:
Remember that explicit JOIN has higher precedence than the implicit join from using comma. To avoid this error I would recommend that you always use explicit joins:
| |||
feedback
|
|
This is not syntax error, but structure error - you don't have "lang" column in "product_tag" table. | |||
|
feedback
|