I have a table in hive
ID|Name
1 "a"
2 "b"
1 "c"
I want the output of a query to be like
1 "a,b"
2 "c"
according to id it must group the name How can i achieve the above in Hive?,is there any built-in function in hive for this? Any pointers will be of great help
Regards,