Fonction MySQL RIGHT()
Exemple
Extraire 4 caractères d'une chaîne (en partant de la droite) :
SELECT RIGHT("SQL Tutorial is cool", 4) AS ExtractString;
Définition et utilisation
La fonction RIGHT() extrait un certain nombre de caractères d'une chaîne (en commençant par la droite).
Astuce : Regardez aussi la fonction LEFT() .
Syntaxe
RIGHT(string, number_of_chars)
Valeurs des paramètres
Parameter | Description |
---|---|
string | Required. The string to extract from |
number_of_chars | Required. The number of characters to extract. If this parameter is larger than the number of characters in string, this function will return string |
Détails techniques
Travaille dans: | Depuis MySQL 4.0 |
---|
Plus d'exemples
Exemple
Extrayez 5 caractères du texte de la colonne "CustomerName" (en partant de la droite) :
SELECT RIGHT(CustomerName, 5) AS ExtractString
FROM Customers;