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....:)
Saturday, 17 December 2022
Hive: ltrim: remove left side trailing spaces
Signature
ltrim(string str)
Remove all
the left side trailing spaces in a string.
hive> SELECTconcat(ltrim(' Hello '), 'world');
OK
_c0
Hello world
No comments:
Post a Comment