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: split: Split the string by a separator
Signature
split(string str, string separator)
Split the
string by a separator and return array of strings as output.
hive> SELECTsplit('ram,23,india', ',');
OK
_c0
["ram","23","india"]
Time taken: 0.039 seconds, Fetched: 1 row(s)
No comments:
Post a Comment