Operators

Concatenation is allowed using Boolean AND, OR, and NOT operators. You can use parentheses to group clauses and force precedence. The AND operator has precedence over other operators. For example:

(LastName = 'Smith' OR LastName = 'Jones') AND FirstName = 'John' 

When you create comparison expressions, the following operators are allowed:

<, >, <=, >=, <>, =, IN, LIKE

The following arithmetic operators are also supported in expressions:

+ (addition)

- (subtraction)

* (multiplication)

/ (division)

% (modulus)

To concatenate a string, use the + character.


Legal Notice | Contact Certara
© Certara USA, Inc. All rights reserved.