Section courante

A propos

Section administrative du site

LTRIM

Trimé à gauche
MySQL  

Syntaxe

LTrim(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 au début d'une chaine de caractères.

Exemple

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

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

on obtiendra le résultat suivant :

Text Result
ltrim("08h00 ")= 08h00
ltrim(" Ceci est un début de paragraphe.")= Ceci est un début de paragraphe.
ltrim(" Allo")= Allo
ltrim("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 934.
MySQL: The definitive guide to using, programming, and administering MySQL 4 databases - Second Edition, Paul Dubois, 2003, ISBN: 0-7357-1212-3, page 814

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