informix中substr函数的用法 sql中substr的用法

一、定义如下:Inoracle/PLSQL, the substr functions allows you to extract asubstring from a string.
  The syntax for the substr functionis:

  substr( string, start_position, [ length ])

  说明:

  string is the source string.

  start_position is the position for extraction. The first positionin the string is always 1.

  length is optional. It is the number of characters to extract. Ifthis parameter is omitted, substr will return the entirestring.

  For example:

  Sql代码

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

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

  substr('TechOnTheNet', 1, 4) would return'Tech'

  substr('TechOnTheNet', -3, 3) would return'Net'

  substr('TechOnTheNet', -6, 3) would return'The'

  substr('TechOnTheNet', -8, 2) would return'On'
二、解析substr(string,start_position,[length]);参数1: string 要处理的字符串(字符串、二进制字符串、文本等列的表达式,不能使用聚合函数的表达式)参数2:start_position截取字符串的开始位置(起始位置是1,包括1;即使是0,也是从第一个字符串开始截取;如果Start取值<0,那么会逆序取值)
参数3:length 截取的字符串的长度(可选参数)

  

爱华网本文地址 » http://www.413yy.cn/a/25101015/257845.html

更多阅读

excel中round函数的使用方法 isodd函数的使用方法

excel中round函数的使用方法——简介不少朋友都会问在excel中round函数怎么用,作为使用频率较高函数之一,本文就介绍一下round函数的使用方法。excel中round函数的使用方法——工具/原料office excelexcel中round函数的使用方法——

Excel中COLUMN函数的使用 excel函数的使用方法

Excel中COLUMN函数的使用——简介COLUMN函数是一个简单的辅助函数,在一些复杂的函数计算中会使用到COLUMN函数,但是一般都不会对COLUMN函数作解析,很多朋友对公式函数中突然插入“=COLUMN()”表示理解。这里,为大家介绍COLUMN函数的使用。

SetTimer函数的用法 c settimer用法

SetTimer函数的用法VS2008Ontimer函数在CDialogBar类中不能响应解决方案:如果是手工加的wm_timer消息,那就要检查一下BEGIN_MESSAGE_MAP(...Dlg, CDialog),END_MESSAGE_MAP()ON_WM_TIMER()宏之间有没有ON_WM_TIMER()了,没有的要添

Excel中Frequency函数的使用 excel frequency函数

Excel电子表格作为办公自动化中重要的一款软件,其强大的数据处理功能中很大一部分取决于函数的使用。本文就函数Frequency的使用做以简单介绍。以一列垂直数组返回某个区域中数据的频率分布。例如,使用函数FREQUENCY 可以计算公司员工

声明:《informix中substr函数的用法 sql中substr的用法》为网友曷汽水分享!如侵犯到您的合法权益请联系我们删除