SELECTLOWER('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
SELECTLOWER('YOU ARE A PREDICTION OF THE GOOD ONES') AS LOWERCASE;
Output:
LOWERCASE |
-------------------------------------+
you are a prediction of the good ones|
Code:
CREATEORREPLACEFUNCTIONto_lower(str varchar)RETURNS stringLANGUAGEJAVASCRIPTAS$$returnSTR.toLowerCase();$$;SELECTTO_LOWER('YOU ARE A PREDICTION OF THE GOOD ONES') LOWERCASE;
Output:
LOWERCASE |
-------------------------------------+
you are a prediction of the good ones|