Funzione MySQL SUBSTRING()
Esempio
Estrai una sottostringa da una stringa (inizia dalla posizione 5, estrai 3 caratteri):
SELECT SUBSTRING("SQL Tutorial", 5, 3) AS ExtractString;
Definizione e utilizzo
La funzione SUBSTRING() estrae una sottostringa da una stringa (a partire da qualsiasi posizione).
Nota: le funzioni SUBSTR() e MID() equivalgono alla funzione SUBSTRING().
Sintassi
SUBSTRING(string, start, length)
O:
SUBSTRING(string FROM start FOR 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 | Optional. The number of characters to extract. If omitted, the whole string will be returned (from the start position) |
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 SUBSTRING(CustomerName,
2, 5) AS ExtractString
FROM Customers;
Esempio
Estrarre una sottostringa da una stringa (iniziare dalla fine, in posizione -5, estrarre 5 caratteri):
SELECT SUBSTRING("SQL Tutorial", -5, 5) AS ExtractString;