当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


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。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。