My array string in hive looks like this.
[[a,b],[c,d], [e,f]]
Output should be
[a,b]
[c,d]
[e,f]
I tried using explode function and lateral view also. Am getting the output as [a,b], [c,d],[e,f] in one row. I need the output like having each string in one row as above.