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

Comment écrire une instruction MYSQL CASE WHEN avec plusieurs conditions de recherche ?

Utilisez l'autre format pour CASE déclarations :

CASE 
   WHEN vc_shape IN ('02', '51') THEN SET dc_square_1 = dc_square_1 + dc_row_total;
   WHEN vc_shape IN ('06', '30', '83') THEN SET dc_square_2 = dc_square_2 + dc_row_total; 
   .....
   .....
  ELSE
      BEGIN
      END;
END CASE;