Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Zeilennummer pro Gruppe in mysql

Bitte gehen Sie meine Geige durch

Dieser letzte Versuch

    SELECT    id,
              crew_id,
              amount,
              type,
             ( 
                CASE type 
                WHEN @curType 
                THEN @curRow := @curRow + 1 
                ELSE @curRow := 1 AND @curType := type END
              ) + 1 AS rank
    FROM      Table1 p,
              (SELECT @curRow := 0, @curType := '') r
   ORDER BY  crew_id,type asc;