Bootstrap

如何MySQL数据库的某个字段都加上1000呢?

update 表名 set  字段名=字段名+1000;

但不能写成这样:

update 表名 set  字段名+=1000;

;