sql >> Database >  >> RDS >> Mysql

MySQL - alle records bijwerken zodat ze overeenkomen met de maximale waarde in de groep

UPDATE  t_transaction tu
JOIN    (
        SELECT  code, MAX(flag) AS flag
        FROM    t_transaction
        GROUP BY
                code
        ) t
ON      tu.code = t.code
SET     tu.flag = t.flag


  1. Forceer Oracle Drop Global Temp Table

  2. Ruby:mysql2-Gem werkt niet (Mac OS X Snow Leopard, Ruby 1.9.2)

  3. PostgreSQL voor Windows ontwikkelen, deel 2

  4. CHAR() of VARCHAR() als primaire sleutel in een ISAM MySQL-tabel?