Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Bonjour,
Dans mon champs, je peux avoir du texte en majuscule ou en minuscule (BG ou bg )
Je souhaite garder que le texte en minuscule. Pouvez-vous m'aider svp ?
En vous remerciant.
Karine
Try this:
LOAD
//..
champ
RESIDENT
Table
WHERE
champ = lower(champ);
This will return only the rows where values of champ are completely in lower case.
Try this:
LOAD
//..
champ
RESIDENT
Table
WHERE
champ = lower(champ);
This will return only the rows where values of champ are completely in lower case.
Super merci !