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

mysql update increment int-Feld, das null ist

UPDATE TableName SET column = IFNULL(column, 0) + 1 WHERE ...

Weitere Informationen zu IFNULL . Es gibt das erste Argument zurück, wenn es nicht NULL ist , die zweite sonst.