Lets assume the nested repeated field is Experience.Company, Experience.Months. Now if the Experience record contains , say, "GE" in Experience.Company, i want to skip the entire record.
The query i tried is something of this sort:
select name, location from table_name where Experience.Company != "GE".
This obviously doesn't work, since i get the record for other values.
I tried OMIT IF, with the same result.
Anything else I could try?