Returns its string argument in all lower case.
string
lower("Sally")
In this example, lower returns “sally”.
lower
lower(string expr str)
str: expression evaluating to string
lower sets to lower case all alphabetic characters in expr and returns the result.
Content