I have loaded 3 tables for 3 subjects in PIG, each having Name:chararray and score:float. The same name may not occur necessarily in all subjects.
I need to add the scores from the 3 tables into a single one, having Name and Total score.
I used to do this in SQL using nested queries. How to do this in PIG? I tried using full outer join, but was stuck after encountering null values in the Name columns for the subjects in which the name doesn't exist.
JOINis a possible approach here, but you will have to massage the output a bit after theJOIN. - mr2ert