SELECTUPPER('you are a prediction of the good ones') AS [UPPER]
Output:
+-------------------------------------+
|UPPER |
+-------------------------------------+
|YOU ARE A PREDICTION OF THE GOOD ONES|
+-------------------------------------+
Code:
OUT -> SqlServer_01.sql
SELECTUPPER('you are a prediction of the good ones') AS UPPER;
Output:
+-------------------------------------+
|UPPER |
+-------------------------------------+
|YOU ARE A PREDICTION OF THE GOOD ONES|
+-------------------------------------+
Code:
CREATEORREPLACEFUNCTIONto_upper(str varchar)RETURNS stringLANGUAGEJAVASCRIPTAS$$returnSTR.toUpperCase();$$;SELECTTO_UPPER('you are a prediction of the good ones') UPPER;
Output:
UPPER |
-------------------------------------+
YOU ARE A PREDICTION OF THE GOOD ONES|