Section courante

A propos

Section administrative du site

RTRIM

Trimé à droite
SQL Server Microsoft SQL Server

Syntaxe

RTRIM(Chaine)

Paramètres

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

Description

Cette fonction supprime les caractères d'espace à la fin d'une chaine 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
  2. UNION
  3. SELECT     'rtrim(" Ceci est un début de paragraphe.")=' AS Text, RTRIM(' Ceci est un début de paragraphe.') AS Result
  4. UNION
  5. SELECT     'rtrim(" Allo")=' AS Text, RTRIM(' Allo') AS Result
  6. UNION
  7. 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

Langage de programmation - SQL Server - Référence de fonctions - LTRIM
Articles - Les géants de l'informatique - Microsoft

Dernière mise à jour : Dimanche, le 7 juin 2015