or (inclusion operator)

The or inclusion operator combines two or more values (words, strings, dates, times or numbers) to retrieve documents that contain at least one of the specified values.

The or inclusion operator is specified with the <or> element. Searched values are defined as children of <or>.

This sample query retrieves documents that contain at least one of Canada, Africa, or Chicago.

<?xml version="1.0" encoding="utf-16"?>
<query VERSION="4.5" RESULTSPACE="orQuery"> 
<!-- orQuery.xml -->
    <key NAME="FullText"> 
        <or> 
            <elem>Canada</elem> 
            <elem>Africa</elem>
            <elem>Chicago</elem> 
        </or> 
     </key> 
</query>