Skip to main content

Query Statement Examples

Zuora
  • 日本語のコンテンツは機械翻訳されており、補助的な参照を目的としています。機械翻訳の精度は保証できません。英語版が正となります。また、現時点では検索機能は日本語での検索をサポートしていません。翻訳に関するフィードバックについては、docs@zuora.comに送信してください。

Query Statement Examples

Overview

This topic provides examples showing how you can construct queries.

Simple Queries

The following query returns the account numbers and names for all accounts.

1select AccountNumber, Name from Account

The following query returns the account IDs and first (personal) and last (family) names for all contacts.

1select AccountId, FirstName, LastName from Contact

Queries with Filter Statements using WHERE

The following query finds all accounts with a purchase order number.

1select AccountNumber from account where PurchaseOrderNumber != null

The following query finds all accounts where AutoPay has been set to yes (true) and the status of those accounts is active.

1select AccountNumber from account where AutoPay = true and Status='Active'

The following query finds all accounts where AutoPay has been set to no (false).

1select AccountNumber from account where AutoPay != true

Order of Operation

ZOQL for SOAP queries does not support parentheses in query() calls. The and operator takes priority over the or operator. This example shows the difference in filter statement logic.

Example Contacts
firstName lastName fax
Willie A 2
Willie B 3
Jason B 3
Jason A 1
James A 2
James B 2
Billy A 4
Billy B 2
Jerome A 5
Jerome B 6

Filter Statement 1

SELECT firstName,lastName,fax FROM Contact WHERE firstName='Billy' or lastName='A' and firstName='Jason' or fax='6' or fax='5';

Returns
firstName lastName fax
Jason A 1
Billy A 4
Billy B 2
Jerome A 5
Jerome B 6

Notice that lastName='A' and firstName='Jason' is evaluated first.

The equivalent filter statement using parentheses (not supported) would be:

SELECT firstName,lastName,fax FROM Contact WHERE firstName='Billy' or (lastName='A' and firstName='Jason') or fax='6' or fax='5';

Filter Statement 2

SELECT firstName,lastName,fax FROM Contact WHERE fax='2' or firstName='Billy' and lastName='A' or fax='5' and firstName='Jerome';

Returns
firstName lastName fax
Willie A 2
James A 2
James B 2
Billy A 4
Billy B 2
Jerome A 5

In this case, firstName='Billy' and lastName='A' as well as fax='5' and firstName='Jerome' are evaluated first. 

The equivalent filter statement using parentheses (not supported) would be:

SELECT firstName,lastName,fax FROM Contact WHERE fax='2' or (firstName='Billy' and lastName='A') or (fax='5' and firstName='Jerome');