Apache Presto - lower(string)



Query

presto:default> select lower('TutorialspoinT') as string_lower; 

Result

 string_lower 
---------------- 
 tutorialspoint 

The output is the lowercase of the given string.

apache_presto_sql_functions.htm
Advertisements