Database error: Invalid SQL: SELECT a.id AS shop_id,
a.titel AS shop_titel,
a.beschreibung AS shop_beschreibung,
a.kategorie AS shop_kategorie,
a.preis AS shop_preis,
b.bild_id AS shop_bild_id,
b.anzeige_bei_shop_id AS anzeige_bei_shop_id,
c.id AS shop_kategorie_id,
c.name AS shop_kategorie_name,
c.titel AS shop_kategorie_titel,
d.id AS bild_id,
d.breite AS bild_breite,
d.hoehe AS bild_hoehe,
d.name AS bild_name
FROM shop AS a,
shop_bild AS b,
shop_kategorie AS c,
bild AS d
WHERE a.id = b.anzeige_bei_shop_id
AND a.kategorie = c.id
AND c.id =
AND b.bild_id = d.id
LIMIT 0,1
MySQL Error: 1064 (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 'AND b.bild_id = d.id
LIMIT 0,1' at line 22)
Session halted.