思绪的空中生活

mysql 批量修改
MySQL 把表中某一列值为'a'的数据全部修改为'b'update 表名 set 列名 = 'b' where ...
扫描右侧二维码阅读全文
30
2022/08

mysql 批量修改

MySQL 把表中某一列值为'a'的数据全部修改为'b'
update 表名 set 列名 = 'b' where 列名 = 'a'

参考:https://segmentfault.com/q/1010000041562309

  • 没有相关文章
  • Last modification:August 30th, 2022 at 11:11 pm
    If you think my article is useful to you, please feel free to appreciate

    Leave a Comment