Moin moin,
ich benötige einen kleinen Gedankenanstoß... ich hatte ursprünglich eine Abfrage wie folgt...
jetzt würde ich diese Abfrage gerne umstellen auf eine LEFT JOIN-Abfrage, leider weiss ich nicht wie ich z.B. "
" in die Abfrage eingebunden bekomme... hat da jemand einen Tipp für mich ? Meine bisherigen Versuche sind bis dato in Error-Meldungen erstickt...
So weit bin ich bis jetzt...
Vielen Dank im Voraus
Gruß
TC
ich benötige einen kleinen Gedankenanstoß... ich hatte ursprünglich eine Abfrage wie folgt...
PHP-Code:
SELECT saison.mannschaft_id,
mannschaft.mannschaft,
sum( IF ( tore < gegentore, 1, 0 ) ) AS niederlage,
sum( IF ( tore = gegentore, 1, 0 ) ) AS unentschieden,
sum( IF ( tore > gegentore, 1, 0 ) ) AS sieg
FROM saison,
mannschaft
WHERE saison.tore >1 AND
saison.gegentore >1 AND
saison.mannschaft_id = mannschaft.mannschaft_id
AND $saison.mannschaft_id = 'teamid'
AND saison.datum BETWEEN 'von' AND 'bis'
GROUP BY saison.mannschaft_id
ORDER BY sieg DESC , unentschieden DESC , niederlage
PHP-Code:
sum(if tore > gegentore,1,0)) AS sieg
So weit bin ich bis jetzt...
PHP-Code:
SELECT * FROM mannschaft
LEFT JOIN saison,
ON
mannschaft.mannschaft_id = saison.mannschaft_id,
WHERE
saison.tore >1 AND saison.gegentore >1 AND saison.mannschaft_id = mannschaft.mannschaft_id
GROUP BY mannschaft.mannschaft_id
ORDER BY sieg DESC, unentschieden DESC , niederlage
Gruß
TC