Fonction MySQL SUBSTR()
Exemple
Extrayez une sous-chaîne d'une chaîne (commencez à la position 5, extrayez 3 caractères) :
SELECT SUBSTR("SQL Tutorial", 5, 3) AS ExtractString;
Définition et utilisation
La fonction SUBSTR() extrait une sous-chaîne d'une chaîne (en commençant à n'importe quelle position).
Remarque : Les fonctions SUBSTR() et MID() sont équivalentes à la fonction SUBSTRING() .
Syntaxe
SUBSTR(string, start, length)
OU:
SUBSTR(string FROM start FOR length)
Valeurs des paramètres
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) |
Détails techniques
Travaille dans: | Depuis MySQL 4.0 |
---|
Plus d'exemples
Exemple
Extrayez une sous-chaîne du texte d'une colonne (commencez à la position 2, extrayez 5 caractères) :
SELECT SUBSTR(CustomerName,
2, 5) AS ExtractString
FROM Customers;
Exemple
Extraire une sous-chaîne d'une chaîne (commencer à la fin, à la position -5, extraire 5 caractères) :
SELECT SUBSTR("SQL Tutorial", -5, 5) AS ExtractString;