博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
oracle - substr() & instr()
阅读量:5990 次
发布时间:2019-06-20

本文共 1157 字,大约阅读时间需要 3 分钟。

1. substr()

syntax:

SUBSTR (string, start_position, [length_of_substring])

eg:

substr('This is a test', 6, 2)     would return 'is'

remarks:

  • The original string is assumed to start at position one (1).
  • If substring_length is omitted, then Oracle returns all characters to the end of char.
  • If substring_length is less than 1, then Oracle returns null.

2. instr()

syntax:

instr(string,substring,[position],[occurrence])

eg:

select instr('corporate floor','or',3,2) from dual;  would return '14'

remarks:

  • The default values of both position and occurrence are 1, meaning Oracle begins searching at the first character of string for the first occurrence of substring.
  • The return value is relative to the beginning of string, regardless of the value of position.

我的用例:

CASE UPPER(T1.COLUMN_TYPE)    WHEN SUBSTR(RF1.PARAM_VALUE,1,INSTR(RF1.PARAM_VALUE,'~')-1) THEN SUBSTR(RF1.PARAM_VALUE,INSTR(RF1.PARAM_VALUE,'~')+1)    ELSE T1.PRODUCT_TYPE_DESCEND AS PRODUCT_TYPE

COLUMN_TYPE: AN APPLE

PARAM_VALUE: AN APPLE~FRUIT
SUBSTR(RF1.PARAM_VALUE,1,INSTR(RF1.PARAM_VALUE,'~')-1): AN APPLE
INSTR(RF1.PARAM_VALUE,'~')+1: 10
这里用于字段参数化,从一个参数表的某个相应字段中对比取值,对比~前的值,如果一致,那么取~后的值。

转载地址:http://vpnlx.baihongyu.com/

你可能感兴趣的文章
[Swust OJ 763]--校门外的树 Plus(暴力枚举)
查看>>
mysql 批量修改字段方法
查看>>
【转】IPV6的地址类型
查看>>
Swap Nodes in Pairs
查看>>
软件项目文档——Responsibility Assignment Matrix
查看>>
数据结构(一)_数组
查看>>
【Android您问我讲】如何使用选显卡 - Tabhost的使用
查看>>
CCF201803-2 碰撞的小球(模拟)
查看>>
Convert CString to ANSI string in UNICODE projects
查看>>
Nuget出现错误怎么办?
查看>>
Kafka
查看>>
C语言中变量的存储类型
查看>>
C++_类和动态内存分配5-使用指向对象的指针
查看>>
代码优化的一个小例子
查看>>
ExtJS的MessageBox总结
查看>>
JAVA循环陷阱-数据溢出
查看>>
Hadoop分布式文件系统:架构和设计要点 - 转
查看>>
C# String 类
查看>>
学习笔记整理之多态,
查看>>
题解 P3369 【【模板】普通平衡树】
查看>>