Section courante

A propos

Section administrative du site

RTRIM

Trimé à droite
MySQL  

Syntaxe

RTrim(Chaine)

Paramètres

Nom Description
Chaine Ce paramètre permet d'indiquer la chaîne de caractères contenant l'expression à traiter

Description

Cette fonction supprime les caractères d'espace à la fin d'une chaîne de caractères.

Exemple

Voici un exemple montrant une utilisation plus classique de cette fonction :

  1. SELECT 'rtrim("08h00 ")=' As Text, rtrim("08h00 ") As Result UNION
  2. SELECT 'rtrim(" Ceci est un début de paragraphe.")=' As Text, rtrim(" Ceci est un début de paragraphe.")  As Result UNION
  3. SELECT 'rtrim(" Allo")=' As Text, rtrim(" Allo")  As Result UNION
  4. SELECT  'rtrim("Allo")=' As Text, rtrim("Allo")  As Result 

on obtiendra le résultat suivant :

Text Result
rtrim("08h00 ")= 08h00
rtrim(" Ceci est un début de paragraphe.")=   Ceci est un début de paragraphe.
rtrim(" Allo")=   Allo
rtrim("Allo")= Allo

Voir également

Article - Les géants de l'informatique - Oracle

Références

MySQL - Référence, Edition Micro Application, Nicolas Rivereau, Antoine Pichot, 2002, ISBN: 2-7429-2560-0, page 935.
MySQL: The definitive guide to using, programming, and administering MySQL 4 databases - Second Edition, Paul Dubois, 2003, ISBN: 0-7357-1212-3, page 818

Dernière mise à jour : Mercredi, le 29 avril 2015