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

mysql字符串处理

时间:2018-04-13 16:11:41      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:pre   串处理   特定   color   get   mysql   字符串处理   指定   长度   

MySQL字符串操作:

substring(column_name, "start_position");  # 从指定的位置(第二个参数, start_position)开始,取到结尾的所有字符。

substring(column_name, "start_position", "length"); # 从指定的位置(第二个参数, start_position)开始,取特定长度(第三个参数指定,length)的字符。

# 先对字符串进行分割(分割符号由第二个参数指定,delimiter),选取分割后的某一部分字符串(具体取第几个由第三个参数index指定, index取负数可以从右向左计算)
substring_index(column_name, "delimiter", "index_of_substring");


left(column_name, “how_many_characters_to_get_from_left”); # 从左面开始取多少个字符

right(column_name, “how_many_characters_to_get_from_right”); # 见上条

mysql字符串处理

标签:pre   串处理   特定   color   get   mysql   字符串处理   指定   长度   

原文地址:https://www.cnblogs.com/buxizhizhoum/p/8820580.html

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