MySQL 的 MID(~)
方法從輸入字符串 str
中返回長度為 len
個字符的子字符串,從位置 pos
開始。
參數
1. str
| string
要從中返回子字符串的字符串。
2. pos
| number
返回的子字符串的起始位置。請注意,MySQL 從 1 而不是 0 開始計算位置。
3. len
| number
從 start
位置開始返回的字符數。
返回值
從位置 pos
開始的輸入字符串 str
中長度為 len
個字符的子字符串。
例子
考慮下表有關一些學生的信息:
student_id |
名稱 |
名字 |
day_enrolled |
年齡 |
用戶名 |
---|---|---|---|---|---|
1 |
Sky |
Towner |
2015-12-03 |
17 |
stowner1 |
2 |
Ben |
Davis |
2016-04-20 |
19 |
bdavis2 |
3 |
Travis |
Apple |
2018-08-14 |
18 |
tapple3 |
4 |
Arthur |
David |
2016-04-01 |
16 |
adavid4 |
5 |
Benjamin |
Town |
2014-01-01 |
17 |
btown5 |
可以使用此處的代碼創建上述示例表。
基本用法
要返回從學生姓氏的第二個字母開始的 3 個字符的子字符串:
SELECT lname, MID(lname, 2, 3)
FROM students;
+--------+----------------+
| lname | MID(lname,2,3) |
+--------+----------------+
| Towner | own |
| Davis | avi |
| Apple | ppl |
| David | avi |
| Town | own |
+--------+----------------+
要從 'Hello'
返回從第三個字母開始的 2 個字符子字符串:
SELECT MID('Hello', 3, 2);
+--------------------+
| MID('Hello', 3, 2) |
+--------------------+
| ll |
+--------------------+
相關用法
- MySQL MID()用法及代碼示例
- MySQL MINUTE方法用法及代碼示例
- MySQL MICROSECOND方法用法及代碼示例
- MySQL MIN方法用法及代碼示例
- MySQL MIN()用法及代碼示例
- MySQL MINUTE()用法及代碼示例
- MySQL MICROSECOND()用法及代碼示例
- MySQL MONTHNAME()用法及代碼示例
- MySQL MONTH方法用法及代碼示例
- MySQL MONTHNAME方法用法及代碼示例
- MySQL MOD方法用法及代碼示例
- MySQL MAKETIME方法用法及代碼示例
- MySQL MONTH()用法及代碼示例
- MySQL MAX方法用法及代碼示例
- MySQL MAX()用法及代碼示例
- MySQL MAKE_SET()用法及代碼示例
- MySQL MD5用法及代碼示例
- MySQL MAKE_SET方法用法及代碼示例
- MySQL MOD()用法及代碼示例
- MySQL MAKEDATE()用法及代碼示例
- MySQL MAKETIME()用法及代碼示例
- MySQL MAKEDATE方法用法及代碼示例
- MySQL ROUND()用法及代碼示例
- MySQL REPEAT()用法及代碼示例
- MySQL POWER()用法及代碼示例
注:本文由純淨天空篩選整理自Arthur Yanagisawa大神的英文原創作品 MySQL | MID method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。