Wilhelm Turtschan: schweres Problem...

Beitrag lesen

habe d'ehre Lavender

SELECT * FROM x.products, y.products_to_categories
WHERE x.products_status = '1'
AND y.categories_id = '22'
AND x.products_id = y.products_id
ORDER BY x.products_date_added DESC
LIMIT 0,9

Koennte u.U. daran liegen, dass die ersten beiden AND-Klauseln noch keine Verknuepfung kennen.

WHERE x.products_id = y.products_id
AND x.products_status = '1'
AND y.categories_id = '22'

man liest sich
Wilhelm