码迷,mamicode.com
首页 > 其他好文 > 详细

substr函数的用法

时间:2017-02-07 14:58:14      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:技术   href   blog   substr函数   select   ref   inline   nbsp   osi   

substr函数的用法

取得字符串中指定起始位置和长度的字符串   substr( string, start_position, [ length ] )

substr(字符串,截取开始位置,截取长度) //返回截取的字

substr(‘Hello World‘,0,1) //返回结果为 ‘H‘  *从字符串第一个字符开始截取长度为1的字符串

substr(‘Hello World‘,1,1) //返回结果为 ‘H‘  *0和1都是表示截取的开始位置为第一个字符

 

例如:

select *, substr(province, 5,2) FROM `student` WHERE ID = 24

技术分享

substr函数的用法

标签:技术   href   blog   substr函数   select   ref   inline   nbsp   osi   

原文地址:http://www.cnblogs.com/sallyliu/p/6374073.html

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