Query Parameter Syntax
The query parameter must use specific SQL syntax.
For example:
SELECT attribute(s) FROM process WHERE condition [ORDER BY attribute(s) ASC|DESC];
where:
- attribute is a valid process data attribute. See Query Parameter Attributes for a list of valid attributes.
- condition is an expression that defines the filter to be used. The
condition expression must use the following syntax:
attribute operator value
where:
- attribute is a valid process data attribute for the WHERE clause. See Query Parameter Attributes for a list of valid attributes.
- operator is a valid operator for the WHERE clause. See Query Parameter Operators for a list of valid attributes.
- value is a constant literal. The constant literal can be a numeric type, date/time type or text type. A text literal must be enclosed in single quotes e.g. ‘mytext’.
SQL keywords such as SELECT, FROM and WHERE are case insensitive.
The ORDER BY clause can be used to sort the data.
Filtering can be done based on multiple conditions by the use of the AND and OR logical operators. Parenthesis can be used to form complex expressions. For example:
Copyright © Cloud Software Group, Inc. All rights reserved.