update 表名 set 字段名=REPLACE (字段名,'原来的值','要修改的值') 

如:将tbl_user表的user_name字段中的大写的A替换成小写的a

update tbl_student set user_name=REPLACE(user_name,'A','a');

相关文章:

  • 2022-12-23
  • 2021-09-17
  • 2021-05-24
  • 2021-11-16
  • 2021-11-16
  • 2021-09-17
  • 2021-10-30
猜你喜欢
  • 2021-10-01
  • 2021-08-14
  • 2021-12-05
  • 2022-12-23
  • 2022-12-23
  • 2021-08-14
相关资源
相似解决方案