Fonction MySQL RTRIM()
Exemple
Supprimez les espaces de fin d'une chaîne :
SELECT RTRIM("SQL Tutorial ") AS RightTrimmedString;
Définition et utilisation
La fonction RTRIM() supprime les espaces de fin d'une chaîne.
Syntaxe
RTRIM(string)
Valeurs des paramètres
Parameter | Description |
---|---|
string | Required. The string to remove trailing spaces from |
Détails techniques
Travaille dans: | Depuis MySQL 4.0 |
---|