说明substring(被截取字段从第几位开始截取)
substring(被截取字段从第几位开始截取截取长度)
例select substring(content) as abstract from my_content_t
select substring(content) as abstract from my_content_t
(注如果位数是负数 如 则是从后倒数位数到字符串结束或截取的长度)
按关键字截取字符串
substring_index(strdelimcount)
说明substring_index(被截取字段关键字关键字出现的次数)
例select substring_index(blogchinabytecom) as abstract from my_content_t
结果blogchinabyte
(注如果关键字出现的次数是负数 如 则是从后倒数到字符串结束)
结果chinabytecom
[] []