Mysql
 sql >> Base de données >  >> RDS >> Mysql

Mettre à jour plusieurs lignes mysql

Utiliser une instruction case...

Update tbl
set points = CASE 
  WHEN ID = 1 then 05 
  when ID = 2 then 10 
  when ID = 3 then 825 
  when ID = 4 then 48 END

Violon de travail :http://sqlfiddle.com/#!9/6cb0d/1/ 0