This blog is primarily focus on Java fundamentals and the libraries built on top of Java programming language. Most of the post are example oriented, hope you have fun in reading my blog....:)
Wednesday, 14 December 2022
Hive: lcase, lower: Return the string in lower case
Signature
lcase(string
str)
lower(string
str)
hive> SELECTlcase('HEllo');
OK
_c0
hello
Time taken: 0.043 seconds, Fetched: 1 row(s)
hive>
hive>
hive> SELECTlower('HEllo');
OK
_c0
hello
Time taken: 0.052 seconds, Fetched: 1 row(s)
No comments:
Post a Comment