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

mysql字段截取(转)

时间:2014-07-03 09:58:51      阅读:238      评论:0      收藏:0      [点我收藏+]

标签:blog   os   sql   div   mysql   字符串   

 函数:
    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、按关键字截取字符串
    substring_index(str,delim,count)
    说明:substring_index(被截取字段,关键字,关键字出现的次数)
    例:select substring_index(”blog.chinabyte.com”,”。”,2) as abstract from my_content_t
    结果:blog.chinabyte

 

mysql字段截取(转),布布扣,bubuko.com

mysql字段截取(转)

标签:blog   os   sql   div   mysql   字符串   

原文地址:http://www.cnblogs.com/love-you-girl/p/3818280.html

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