Softerra LDAP Administrator HelpShow AllHide All

LOWER

Returns a symbol expression after converting lower case symbols into upper case symbols.

Syntax

LOWER (string_expression)

Arguments

string_expression - can be a constant, attribute or a result of the function that returns a string.

Examples

The following example converts the description attribute of all entries to lowercase.

UPDATE ROOTDSE
SET $description=LOWER($description)
WHERE EXISTS $description;