您可以嵌套多个<quer:or>
语句以组合成对的两个条件。
<quer:filtering xmlns:quer="http://www.taleo.com/ws/integration/query">
<quer:or>
<!--Condition 1-->
<quer:or>
<!--Condition 2-->
<quer:or>
<!--Condition 3-->
<!--Condition 4-->
</quer:or>
</quer:or>
</quer:or>
</quer:filtering>
如果 Address、City 或 ZipCode 为空,则为复杂过滤器:
<quer:filtering xmlns:quer="http://www.taleo.com/ws/integration/query">
<quer:or>
<quer:isNull>
<quer:field path="Address"/>
</quer:isNull>
<quer:or>
<quer:isNull>
<quer:field path="City"/>
</quer:isNull>
<quer:isNull>
<quer:field path="ZipCode"/>
</quer:isNull>
</quer:or>
</quer:or>
</quer:filtering>
完全导出:
<quer:query productCode="RC1704" model="http://www.taleo.com/ws/tee800/2009/01" projectedClass="Candidate" locale="en" mode="CSV" largegraph="true" preventDuplicates="false" xmlns:quer="http://www.taleo.com/ws/integration/query">
<quer:subQueries/>
<quer:projections>
<quer:projection alias="CandidateNumber">
<quer:field path="Number"/>
</quer:projection>
</quer:projections>
<quer:projectionFilterings/>
<quer:filterings>
<quer:filtering xmlns:quer="http://www.taleo.com/ws/integration/query">
<!--If Address, City, or ZipCode are null-->
<quer:or>
<quer:isNull>
<quer:field path="Address"/>
</quer:isNull>
<quer:or>
<quer:isNull>
<quer:field path="City"/>
</quer:isNull>
<quer:isNull>
<quer:field path="ZipCode"/>
</quer:isNull>
</quer:or>
</quer:or>
</quer:filtering>
</quer:filterings>
<quer:sortings/>
<quer:sortingFilterings/>
<quer:groupings/>
<quer:joinings/>
</quer:query>
感谢ThinkTalent 技术博客演示如何使用<quer:or>
.