Susanne: Problem beim groupieren, es soll der höchste Wert einer weitere

Ich möchte meine mysql, Tabelle so groupieren, das ich von jedem STAMM (spalte) die NUmmer bekomme und den höchsten Wert aus der Spalte MONEY

SELECT * FROM table1 GROUP by stamm ORDER BY money DESC  
  

stamm ! datum ! money
4 2014-07-29 14:24:57 400
8 2014-07-29 13:40:02 250
8 2014-07-29 13:38:10 200
4 2014-07-28 12:54:38 150
8 2014-07-29 13:35:46 150
4 2014-07-28 12:54:30 100
8 2014-07-29 13:21:19 100
8 2014-07-29 13:19:46 50
7 2014-07-29 14:14:43 50

Weis jemand die Lösung meines Problemes?

Susanne

  1. Hi,

    Ich möchte meine mysql, Tabelle so groupieren, das ich von jedem STAMM (spalte) die NUmmer bekomme und den höchsten Wert aus der Spalte MONEY

    http://dev.mysql.com/doc/refman/5.5/en/example-maximum-column-group-row.html

    MfG ChrisB

    --
    Autocomplete has spoiled me to a point where it happens every so often that I encounter a CAPTCHA, and I just type in the first character … and then wait for the rest of the code to be automatically suggested :/