I have a contact list with a company lookup field and I need to retrieve those without any company associated
so I was thinking can I put it like this:
<Query>
<OrderBy>
<FieldRef Name="Title"></FieldRef>
</OrderBy>
<Where>
<Eq>
<FieldRef Name="Company" />
<Value Type="Lookup"></Value> //or should I put null since it's a lookup field??
</Eq>
</Where>
</Query>