Wednesday 14 December 2022

Hive: lcase, lower: Return the string in lower case

Signature

lcase(string str)

lower(string str)

 

hive> SELECT lcase('HEllo');
OK
_c0
hello
Time taken: 0.043 seconds, Fetched: 1 row(s)
hive> 
hive> 
hive> SELECT lower('HEllo');
OK
_c0
hello
Time taken: 0.052 seconds, Fetched: 1 row(s)

 


Previous                                                    Next                                                    Home

No comments:

Post a Comment