1、从左开始截取字符串
left(str, length)
说明:left(被截取字段,截取长度)
例:select left(content,200) as abstract from my_content_t
2、从右开始截取字符串
right(str, length)
说明:right(被截取字段,截取长度)
例:select right(content,200) as abstract from my_content_t
3、截取字符串
substring(str, pos)
substring(str, pos, length)
说明:substring(被截取字段,从第几位开始截取)
substring(被截取字段,从第几位开始截取,截取长度)
例:select substring(content,5) as abstract from my_content_t
select substring(content,5,200) as abstract from my_content_t
(注:如果位数是负数 如-5 则是从后倒数位数,到字符串结束或截取的长度)
4.substr
substr(string string,num start,num length);
string为字符串;
start为起始位置;
length为长度。
和 substring 一样
5、按关键字截取字符串
substring_index(str,delim,count)
说明:substring_index(被截取字段,关键字,关键字出现的次数)
例:select substring_index("blog.jb51.net","。",2) as abstract from my_content_t
结果:blog.jb51
(注:如果关键字出现的次数是负数 如-2 则是从后倒数,到字符串结束)
6、trim([{both | leading | trailing} [remstr] form] str)
将字符串 str去除 remstr 所指定的前缀或后缀,返回结果字符串。如果没有指定标识符both、leading,或trailing,则默认采用 both,即将前后缀都删除。remstr 其实是个可选参数,如果没有指定它,则删除的是空格。
7、subdate(date,day)截取时间,时间减去后面的day
8、subtime(expr1,expr2) 时分秒expr1-expr2
相关文章
mysql截取字符串的函数总结mysql 位函数mysql c api预处理语句函数描述mysql 结果字符串mysql geometry格式转换函数mysql 其他函数mysql 字符串比较函数mysql 字符串函数php bzip2 函数 返回包含 bzip2 错误号和错误字符串的一个 arrayphp cubrid mysql 兼容性函数 return the number of rows affected by the last sql statementphp cubrid mysql 兼容性函数 get the maximum length of the specified fieldphp cubrid mysql 兼容性函数 return an array with the list of all existing cubrid databasesphp cubrid mysql 兼容性函数 perform a query without fetching the results into memoryphp curl 函数 解码给定的 url 编码的字符串php iconv 函数 截取字符串的部分php mysql 函数 转义一个字符串用于 mysql queryphp mysql 函数 转义 sql 语句中使用的字符串中的特殊字符,并考虑到连接的当前字符集php 字符串 函数 别名 strstrphp 字符串 函数 查找指定字符在字符串中的最后一次出现php php 选项/信息 函数 对比两个「php 规范化」的版本数字字符串
关注编程学问公众号