Apache Presto - upper(string)



Query

presto:default> select upper('tutorialspoint') as string_upper;

Result

 string_upper 
---------------- 
 TUTORIALSPOINT 

The output is the uppercase of the given string.

apache_presto_sql_functions.htm
Advertisements