码迷,mamicode.com
首页 > 数据库 > 详细

Mysql 字段字符串修改

时间:2021-02-20 12:11:20      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:upper   class   update   title   替换   set   修改   code   deb   

使用到的函数

  • CONCAT(str1,str2):字符连接函数
  • UPPER(str):将字符串改为大写字母
  • LOWER(str):将字符串改为小写字母
  • LENGTH(str):判定字符串长度
  • SUBSTRING(str,a,b):提取字段中的一段,从字符串str的第a位开始提取,提取b个字符
  • LEFT(str,n):提取字符串最左边的n个字符
  • RIGHT(str,n):提取字符串最右边的n个字符(该例未用到)

 

分别举例如下:
添加前缀:

update `ecs_goods` set goods_name=concat(‘新中式‘,goods_name) where cat_id =4;

 

添加后缀:

update `ecs_goods` set goods_name=concat(goods_name,‘新中式‘) where cat_id =4;

 

去掉首字母

update `ecs_goods`set goods_name=right(goods_name,length(goods_name)-1) where cat_id =4;
 
替换 update 表名 set 字段名=REPLACE (字段名,‘原来的值‘,‘要修改的值‘)
 

Mysql 字段字符串修改

标签:upper   class   update   title   替换   set   修改   code   deb   

原文地址:https://www.cnblogs.com/chxl800/p/14416581.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!