And 要素 (クエリ)
ビューのクエリにおいてフィルタをグループ化するために Where 要素内で使用します。
<And>
</And>
属性
属性 |
説明 |
---|---|
なし |
該当なし |
子要素
And、BeginsWith、Contains、DateRangesOverlap、Eq、Geq、Gt、IsNotNull、IsNull、Leq、Lt、Membership、Neq、Or |
親要素
出現回数
最小 : 0 最大 : 制約なし |
Remarks
この要素は、他の And 要素や Or 要素内で入れ子になります。サーバーは、無制限の複雑なクエリをサポートします。
例
ProductID フィールドに対するクエリの条件を指定する例を次に示します。(ProductID = J1539 AND ProductID = J9862) AND (ProductID = J0394 OR ProductID = J4589)
<And>
<And>
<Eq>
<FieldRef Name="ProductID"/>
<Value Type="Text">J1539</Value>
</Eq>
<Eq>
<FieldRef Name="ProductID"/>
<Value Type="Text">J9862</Value>
</Eq>
</And>
<Or>
<Eq>
<FieldRef Name="ProductID"/>
<Value Type="Text">J0394</Value>
</Eq>
<Eq>
<FieldRef Name="ProductID"/>
<Value Type="Text">J4589</Value>
</Eq>
</Or>
</And>
次の例では、Status フィールドの値が "Completed" と等しくなく、かつ Sent フィールドの値が null である場合にクエリを実行します。返されるレコードは、Modified フィールドの値に従って降順に並べ替えられます。
<Query>
<OrderBy>
<FieldRef Name="Modified" Ascending="FALSE"></FieldRef>
</OrderBy>
<Where>
<And>
<Neq>
<FieldRef Name="Status"></FieldRef>
<Value Type="Text">Completed</Value>
</Neq>
<IsNull>
<FieldRef Name="Sent"></FieldRef>
</IsNull>
</And>
</Where>
</Query>