Hallo zusammen,
ich möchte folgende SQL Abfrage erweitern:
SELECT products.nr, products.name, products.description, products.sellingprice,
(SELECT mmedia_attribute.value
FROM mmedia_attribute
WHERE mmedia_attribute.attributenr='1011'
AND mmedia_attribute.productnr = products.nr
)AS imagegif
FROM (products INNER JOIN (catalog LEFT JOIN string_catalogattr ON catalog.catalognr = string_catalogattr.catalog) ON products.nr = catalog.productnr) LEFT JOIN catalogattr ON string_catalogattr.attribute = catalogattr.nr
WHERE ((products.special=1) AND (products.shopproduct=1) AND (catalogattr.name="shop_nr") AND (string_catalogattr.value="1"))
hierbei möchte ich einen zusätzlichen wert abfrufen der folgendes attribut hat: mmedia_attribute.attributenr='1013'
irgendwie verstrickt ich mich dabei ;(
Danke und Gruß
Holli