Guma: MySQL -> relationale Datenbank ausgeben mit INNER JOIN

Beitrag lesen

Danke für die Antwort,

meine MySQL-Version ist 5.0

Mit dem habe ich es versucht:
SELECT
    t1.id_firma,
    li_name,
    leistung,
    id,
    hotelbeschreibung
FROM (logo_form AS t1
INNER JOIN logo_leistungen AS t2
ON t1.id_firma = t2.id_firma)
INNER JOIN logo_firma
ON t1.id_firma = logo_firma.li_id
GROUP_CONCAT(leistung)
FROM logo_leistungen

ich bekomme da immer eine Fehlermeldung:
#1064 - You have an error in your SQL syntax;

was mache ich verkehrt?
Guma