Funzione MySQL MID()
Esempio
Estrai una sottostringa da una stringa (inizia dalla posizione 5, estrai 3 caratteri):
SELECT MID("SQL Tutorial", 5, 3) AS ExtractString;
Definizione e utilizzo
La funzione MID() estrae una sottostringa da una stringa (a partire da qualsiasi posizione).
Nota: le funzioni MID() e SUBSTR() sono uguali alla funzione SUBSTRING() .
Sintassi
MID(string, start, length)
Valori dei parametri
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 |
Dettagli tecnici
Funziona in: | Da MySQL 4.0 |
---|
Altri esempi
Esempio
Estrai una sottostringa dal testo in una colonna (inizia dalla posizione 2, estrai 5 caratteri):
SELECT MID(CustomerName,
2, 5) AS ExtractString
FROM Customers;
Esempio
Estrarre una sottostringa da una stringa (iniziare dalla fine, in posizione -5, estrarre 5 caratteri):
SELECT MID("SQL Tutorial", -5, 5) AS ExtractString;