共用方式為


在 XPath 查詢中指定布林函數 (SQLXML 4.0)

下列範例顯示如何在 XPath 查詢中指定布林函數。這些範例中的 XPath 查詢會針對 SampleSchema1.xml 中包含的對應結構描述來指定。如需有關此範例結構描述的詳細資訊,請參閱<XPath 範例的範例註解式 XSD 結構描述 (SQLXML 4.0)>。

A. 指定 not() 布林函數

此查詢會傳回內容節點的所有 <Customer> 子元素,其中不包含 <Order> 子元素:

/child::Customer[not(child::Order)]

child 軸是預設值。因此,此查詢可以指定為:

/Customer[not(Order)]

針對對應的結構描述測試 XPath 查詢

  1. 複製範例結構描述程式碼,並將其貼至文字檔中。將檔案儲存為 SampleSchema1.xml。

  2. 建立下列範本 (BooleanFunctionsA.xml),並將其儲存在儲存 SampleSchema1.xml 的目錄中。

    <ROOT xmlns:sql="urn:schemas-microsoft-com:xml-sql">
      <sql:xpath-query mapping-schema="SampleSchema1.xml">
        Customer[not(Order)]
    </sql:xpath-query>
    </ROOT>
    

    針對對應結構描述 (SampleSchema1.xml) 指定的目錄路徑相對於儲存範本的目錄。您也可以指定絕對路徑,例如:

    mapping-schema="C:\MyDir\SampleSchema1.xml"
    
  3. 建立及使用 SQLXML 4.0 測試指令碼 (Sqlxml4test.vbs) 來執行範本。

    如需詳細資訊,請參閱<使用 ADO 執行 SQLXML 4.0 查詢>。

以下為範本執行的部分結果集:

<ROOT xmlns:sql="urn:schemas-microsoft-com:xml-sql">
  <Customer CustomerID="13" SalesPersonID="286" TerritoryID="7" AccountNumber="13" CustomerType="S" /> 
  <Customer CustomerID="32" SalesPersonID="289" TerritoryID="8" AccountNumber="32" CustomerType="S" /> 
  <Customer CustomerID="35" SalesPersonID="275" TerritoryID="2" AccountNumber="35" CustomerType="S" /> 
  ...
</ROOT>

B. 指定 true() 和 false() 布林函數

此查詢會傳回內容節點的所有 <Customer> 元素子系,其中不包含 <Order> 子元素。在關聯式詞彙中,此查詢會傳回尚未下任何訂單的所有客戶。

/child::Customer[child::Order=false()]

child 軸是預設值。因此,此查詢可以指定為:

/Customer[Order=false()]

這個查詢相當於下列語法:

/Customer[not(Order)]

下列查詢會傳回至少已經下了一個訂單的所有客戶:

/Customer[Order=true()]

這個查詢相當於下列語法:

/Customer[Order]

針對對應的結構描述測試 XPath 查詢

  1. 複製範例結構描述程式碼,並將其貼至文字檔中。將檔案儲存為 SampleSchema1.xml。

  2. 建立下列範本 (BooleanFunctionsB.xml),並將其儲存在儲存 SampleSchema1.xml 的目錄中。

    <ROOT xmlns:sql="urn:schemas-microsoft-com:xml-sql">
      <sql:xpath-query mapping-schema="SampleSchema1.xml">
        /Customer[Order=false()]
      </sql:xpath-query>
    </ROOT>
    

    針對對應結構描述 (SampleSchema1.xml) 指定的目錄路徑相對於儲存範本的目錄。您也可以指定絕對路徑,例如:

    mapping-schema="C:\MyDir\SampleSchema1.xml"
    
  3. 建立及使用 SQLXML 4.0 測試指令碼 (Sqlxml4test.vbs) 來執行範本。

    如需詳細資訊,請參閱<使用 ADO 執行 SQLXML 4.0 查詢>。

以下為範本執行的部分結果集:

<ROOT xmlns:sql="urn:schemas-microsoft-com:xml-sql">
  <Customer CustomerID="13" SalesPersonID="286" TerritoryID="7" AccountNumber="13" CustomerType="S" /> 
  <Customer CustomerID="32" SalesPersonID="289" TerritoryID="8" AccountNumber="32" CustomerType="S" /> 
  <Customer CustomerID="35" SalesPersonID="275" TerritoryID="2" AccountNumber="35" CustomerType="S" /> 
  ...
</ROOT>