30472/hadoop-hive-how-to-split-a-single-row-into-multiple-rows
Try this
SELECT ID1, Sub FROM tableName lateral view explode(split(Subs,',')) Subs AS Sub
Example.
ID1 Subs 1 11, 22 2 22, 33
Now You want to split this table.
ID1 Sub 1 11 2 22
Now, it may clear your doubt.
Well, what you can do is use ...READ MORE
You cannot drop column directly from a ...READ MORE
You can use the get_json_object function to parse the ...READ MORE
SELECT a_id, b, c, count(*) as sumrequests FROM ...READ MORE
Firstly you need to understand the concept ...READ MORE
org.apache.hadoop.mapred is the Old API org.apache.hadoop.mapreduce is the ...READ MORE
Hi, You can create one directory in HDFS ...READ MORE
In your case there is no difference ...READ MORE
You can use the aggregator function collect_set to do ...READ MORE
You can use the split function along ...READ MORE
OR
At least 1 upper-case and 1 lower-case letter
Minimum 8 characters and Maximum 50 characters
Already have an account? Sign in.