MySQL 把表中某一列值为'a'的数据全部修改为'b'update 表名 set 列名 = 'b' where 列名 = 'a'参考:https://segmentfault.com/q/1010000041562309