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....:)
Friday, 23 December 2022
Hive: trim: trim all trailing and leading spaces
Signature
trim(string str)
Trim all
trailing and leading spaces.
hive> SELECTconcat(trim(' Hello '), 'World');
OK
_c0
HelloWorld
No comments:
Post a Comment