MySQL字符串处理函数的几种常见用法

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MySQL字符串处理函数的几种常见用法相关的知识,希望对你有一定的参考价值。

1.字符串大小写转化:

(1).将tbl_student表的user_name字段所有小写字母,替换为大写:

     update tbl_student set user_name=UPPER(user_name);

(2).将tbl_student表的user_name字段所有大写字母,替换成小写:

update tbl_student set user_name=LOWER(user_name);

 

2.清除字符串首尾空格,或者指定字符:

(1).清除tbl_student表的user_name字段首尾空格

     update tbl_student set user_name=TRIM(‘ ‘ from user_name);

(2).清除字符串首部指定字符A:

    update tbl_student set user_name=TRIM(LEADING ‘A‘ from user_name);

(3).清除字符串尾部指定字符B

      update tbl_student set user_name=trim(TRAILING ‘B‘ from user_name);

 

3.替换字符串:

(1).替换字符串中的数字1为字母I

     update tbl_student set user_name=replace(user_name,‘1‘,‘I‘);

 

4.用正则(REGEXP):

(1).若结尾两个为字母,则去掉

     update tbl_student stu stu.user_name=substring(stu.user_name,LENGTH(stu.user_name)-2) where stu.user_name REGEXP ‘[a-zA-Z]{2,}$‘;

以上是关于MySQL字符串处理函数的几种常见用法的主要内容,如果未能解决你的问题,请参考以下文章

PHP开发中涉及到emoji表情的几种处理方法

mysql 数据处理函数汇总

MySQL 常用到的几个字符处理函数

MySQL常用的数据类型及函数_20160920

PHP开发中涉及到emoji表情的几种处理方法

关于JS截取字符串以及截取数组项的几种常见方法解析