I do outer joins on single columns in Pig like this
result = JOIN A by id LEFT OUTER, B by id;
How do I join on two columns, something like -
WHERE A.id=B.id AND A.name=B.name
What is the pig equivalent? I couldn't find any example in the pig manuals...any help?