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

Oracle截取某字段前后字符串

时间:2016-09-09 13:33:27      阅读:189      评论:0      收藏:0      [点我收藏+]

标签:

创建测试表及数据

1
2
3
4
5
6
7
8
9
create table test
(name varchar2(10));
 
insert into test values (‘2-15‘);
insert into test values (‘2-33‘);
insert into test values (‘2-3‘);
insert into test values (‘12-8‘);
insert into test values (‘12-22‘);
insert into test values (‘12-3‘);

 

 执行

1
select name,substr(name,1,instr(name,‘-‘)-1) 前,substr(name,instr(name,‘-‘)+1,length(name)-instr(name,‘-‘)) 后 from test
 

技术分享

Oracle截取某字段前后字符串

标签:

原文地址:http://www.cnblogs.com/fkeyta/p/5856129.html

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