MySQL MID() Funksie
Voorbeeld
Onttrek 'n substring uit 'n string (begin by posisie 5, onttrek 3 karakters):
SELECT MID("SQL Tutorial", 5, 3) AS ExtractString;
Definisie en gebruik
Die MID()-funksie onttrek 'n substring uit 'n string (begin by enige posisie).
Let wel: Die MID() en SUBSTR() funksies is gelyk aan die SUBSTRING() funksie.
Sintaksis
MID(string, start, length)
Parameterwaardes
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 |
Tegniese besonderhede
Werk in: | Van MySQL 4.0 |
---|
Meer voorbeelde
Voorbeeld
Onttrek 'n substring uit die teks in 'n kolom (begin by posisie 2, onttrek 5 karakters):
SELECT MID(CustomerName,
2, 5) AS ExtractString
FROM Customers;
Voorbeeld
Onttrek 'n substring uit 'n string (begin van die einde, by posisie -5, onttrek 5 karakters):
SELECT MID("SQL Tutorial", -5, 5) AS ExtractString;