LOWER

Description

Converts a string to lowercase (LOWER in Transact-SQL).

Sample Source Pattern

Syntax

LOWER ( character_expression )  

Examples

Code:

SELECT LOWER('YOU ARE A PREDICTION OF THE GOOD ONES') AS LOWERCASE

Output:

LOWERCASE                            |
-------------------------------------+
you are a prediction of the good ones|

Last updated