update 表  set 字段= CONCAT (特殊符号,字段) where   条件

例如:

update crm_order_s1 set  designer = concat(',0', mid(designer,2,length(designer)))  where  designer like '0%' and designer!=''

update  表  set  字段 =concat(‘修改后的字符’,mid(字段,2,length(字段))) where     条件

 

 

 

注:mid    我也不太懂这个 所以找了一下这个↓↓↓↓↓↓↓↓

mysql 中 批量修改 一个字段的 第一位 字符

相关文章:

  • 2022-02-25
  • 2021-09-13
  • 2021-12-20
  • 2022-12-23
  • 2022-02-07
  • 2021-08-14
  • 2022-01-12
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-24
  • 2022-02-21
  • 2021-12-21
相关资源
相似解决方案