Hi,
ich mach grad mit PHP was mit Datenbanken. Da hatte ich folgenden
SQL-Befehl:
SELECT vote_result, vote_option_text, SUM(vote_result) AS gesamt FROM " . $prefix . "vote_results WHERE vote_id = $id
Der ging nicht. Erst als ich:
SELECT vote_result, vote_option_text, SUM(vote_result) AS gesamt FROM " . $prefix . "vote_results WHERE vote_id = $id GROUP BY vote_result
geschrieben hatte ging das.
Jetzt wollte ich mal fragen:
Für was brauch ich dieses Group By? Welchen Zweck erfüllt es?
MrSpock hats mir zwar schonmal ne kleine Erklärung gegeben doch so ganz verstanden hab ich sie nicht.