Funkce MySQL MID() .
Příklad
Extrahujte podřetězec z řetězce (začněte na pozici 5, extrahujte 3 znaky):
SELECT MID("SQL Tutorial", 5, 3) AS ExtractString;
Definice a použití
Funkce MID() extrahuje podřetězec z řetězce (začínající na libovolné pozici).
Poznámka: Funkce MID() a SUBSTR() se rovná funkci SUBSTRING() .
Syntax
MID(string, start, length)
Hodnoty parametrů
Parameter | Description |
---|---|
string | Required. The string to extract from |
start | Required. The start position. Can be both a positive or negative number. If it is a positive number, this function extracts from the beginning of the string. If it is a negative number, this function extracts from the end of the string |
length | Required. The number of characters to extract |
Technické údaje
Pracuje v: | Od MySQL 4.0 |
---|
Další příklady
Příklad
Extrahujte podřetězec z textu ve sloupci (začněte na pozici 2, extrahujte 5 znaků):
SELECT MID(CustomerName,
2, 5) AS ExtractString
FROM Customers;
Příklad
Extrahujte podřetězec z řetězce (začněte od konce, na pozici -5, extrahujte 5 znaků):
SELECT MID("SQL Tutorial", -5, 5) AS ExtractString;