程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle教程 >> Oraclesubstr函數用法

Oraclesubstr函數用法

編輯:Oracle教程

Oraclesubstr函數用法


oracle的substr函數的用法
\ 取得字符串中指定起始位置和長度的字符串 substr( string, start_position, [ length ] )
\ 如:
\ substr('This is a test', 6, 2) would return 'is'
\ substr('This is a test', 6) would return 'is a test'
\ substr('TechOnTheNet', -3, 3) would return 'Net'
\ substr('TechOnTheNet', -6, 3) would return 'The'

select substr('Thisisatest', -4, 2) value from dual 結果是 te

select substr('emros',-3,1) value from dual 結果是 r

substr('abcde',-6) = null
substr('abcde',-5) = 'abcde'
substr('abcde',-4) = 'bcde'
substr('abcde',-3) = 'cde'
substr('abcde',-2) = 'de'
substr('abcde',-1) = 'e'
substr('abcde',-0) = 'abcde'

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved