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

从字符串中提取数字

时间:2015-07-23 21:38:08      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:

with n(str, ori, pos) as (
values (‘1,3533,3528,3657,‘, 1, locate(‘,‘,‘1,3533,3528,3657‘))
union all
select str, pos+length(‘,‘), locate(‘,‘, str, pos+length(‘,‘))
from n
where locate(‘,‘, str, pos+length(‘,‘))>0) ,
tmp as (
select substr(str, ori, pos-ori) as trmnlId from n)
select INT(trmnlId) from tmp;

 

 locate(‘,‘,‘1,3533,3528,3657‘)返回‘,‘在‘1,3533,3528,3657‘中第一次出现的位置

 

从字符串中提取数字

标签:

原文地址:http://www.cnblogs.com/ren-shi-min/p/4671467.html

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