加前缀: update 表名 set 列名 = concat(‘前缀’,列名), 如: update t_table set name = concat(‘abc’, name'), name 列中每个值前面拼接abc

 

加后缀: update 表名 set 列名 = concat(列名,‘后缀’), 如: update t_table set name = concat(name, 'abc'), name 列中每个值后面拼接abc

 

相关文章:

  • 2022-12-23
  • 2021-06-29
  • 2022-12-23
  • 2021-12-25
  • 2022-01-02
  • 2022-12-23
  • 2021-11-23
  • 1970-01-01
猜你喜欢
  • 2022-12-23
  • 2021-08-19
  • 2022-12-23
  • 2021-11-22
  • 2021-11-23
  • 2021-11-23
  • 2021-11-23
相关资源
相似解决方案