當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


MySQL SUBSTR()用法及代碼示例


substr() 是 MySQL 的 String 函數。此函數返回給定字符串中的子字符串。

用法

select substr(Str, pos);
Select substr(Str from pos);
Select substr(Str, pos, len);
Select substr(Str from pos for len);

參數:

字符串:主字符串

Len:子串的長度

Pos:定位從給定字符串開始的子字符串。

例子1

Select substr('javatpoint', 5);

輸出:


MySQL String SUBSTR() Function

例子2

Select substr('javatpoint' from 6);

輸出:


MySQL String SUBSTR() Function

例子3

Select substr('javatpoint', 8,3);

輸出:


MySQL String SUBSTR() Function

示例 4

Select substr('javatpoint' from 1 for 4);

輸出:


MySQL String SUBSTR() Function









相關用法


注:本文由純淨天空篩選整理自 MySQL SUBSTR() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。