Hi,
  I have data as :
id1:string, value1:string
Sometimes id is missing so the data looks like:
foo,foobar
,foo1
foobar,bar1
,
....
I want to remove missing values
So the output should be
foo,foobar
foobar,bar1

How can I achieve this in pig (without using udf??)

Reply via email to