SELECT LOWER('YOU ARE A PREDICTION OF THE GOOD ONES') AS LOWERCASE;
Output:
LOWERCASE |
-------------------------------------+
you are a prediction of the good ones|
Code:
OUT -> SQLServer_01.sql
SELECT LOWER('YOU ARE A PREDICTION OF THE GOOD ONES') AS LOWERCASE;
Output:
LOWERCASE |
-------------------------------------+
you are a prediction of the good ones|
Code:
CREATE OR REPLACE FUNCTION to_lower(str varchar)
RETURNS string
LANGUAGE JAVASCRIPT
AS
$$
return STR.toLowerCase();
$$;
SELECT TO_LOWER('YOU ARE A PREDICTION OF THE GOOD ONES') LOWERCASE;
Output:
LOWERCASE |
-------------------------------------+
you are a prediction of the good ones|