LOWER
Last updated
Last updated
Converts a string to lowercase (LOWER in Transact-SQL).
LOWER ( character_expression )
Code:
SELECT LOWER('YOU ARE A PREDICTION OF THE GOOD ONES') AS LOWERCASE;
Output:
LOWERCASE |
-------------------------------------+
you are a prediction of the good ones|