資料庫的substr函式用法:1、【substr(str,pos,len)】從pos開始的位置,擷取len個字元;2、【substr(str,pos)】 pos開始的位置,一直擷取到最後。
資料庫的substr函式用法:
1、substr(str,pos,len): 從pos開始的位置,擷取len個字元
substr(string ,1,3) :取string左邊第1位置起,3字長的字串。所以結果為: str
substr(string, -1,3):取string右邊第1位置起,3字長的字串。顯然右邊第一位置起往右不夠3字長。結果只能是: g
substr(string, -3,3):取string右邊第3位置起,3字長的字串。結果為: ing
2、substr(str,pos): pos開始的位置,一直擷取到最後
substr(string ,4) : 從右第4位置擷取到最後結果是: ing
oracle的substr函式的用法
oracle的substr函式的用法 length this is a test 6,2 would return is this is a test 6 would return is a test techonthenet 3,3 would return net techonthenet 6,...
oracle的substr函式的用法
oracle的substr函式的用法 取得字串中指定起始位置和長度的字串 substr string,start position,length this is a test 6,2 would return is this is a test 6 would return is a test te...
oracle中substr函式的用法
substr string string,int a,int b 引數1 string 要處理的字串 引數2 a 擷取字串的開始位置 起始位置是0 引數3 b 擷取的字串的長度 而不是字串的結束位置 例如 substr abcdefg 0 返回 abcdefg,擷取所有字元 substr abcde...