The operators
The following table lists the operators available in basic mode.
| Operator name | Operator type | Example | Details | 
|---|---|---|---|
| is | Text | CustomerName is Smith | N/A | 
| is not | Text | FirstName is not John | N/A | 
| contains | Text | StatusCode contains 0AZ | N/A | 
| does not contain | Text | ItemID does not contain X32 | N/A | 
| starts with | Text | BankNumber starts with FR | N/A | 
| does not start with | Text | ItemID does not start with DE123 | N/A | 
| ends with | Text | BankNumber ends with 0089 | N/A | 
| does not end with | Text | BankNumber does not end with Y9 | N/A | 
| matches regex | Text | PostalCode matches regex ^[0-9]{5}(-[0-9]{4})?$ | N/A | 
| does not match regex | Text | SSN does not match regex ^\\d{3}-\\d{2}-\\d{4}$ | N/A | 
| is of type | Text | Location is of type Asia | Select a semantic type or standard type: boolean, date, decima, or integer. | 
| is empty | Text | DriverLicense is empty | N/A | 
| is equal to | Number | Age is equal to 21 | N/A | 
| is not equal to | Number | CustomerID is not equal to 16742 | N/A | 
| is greater than | Number | Age is greater than 17 | N/A | 
| is greater than or equal to | Number | Age is greater than or equal to 21 | N/A | 
| is less than | Number | Age is less than 16 | N/A | 
| is less than or equal to | Number | Age is less than or equal to 20 | N/A | 
| is equal to | Date and time | DateOfReceipt is equal to 2020-05-14 09:55:00 | You can select a date or a time, or both. The supported formats are: 
 | 
| is not equal to | Date and time | ValidationDate is not equal to 2020-09-02 | |
| is before | Date and time | BirthDate is before 2003-12-16 | |
| is before or equal to | Date and time | ExpiryDate is before or equal to 2002-01-01 | |
| is after | Date and time | BirthDate is after 1983-12-31 | |
| is after or equal to | Date and time | BirthDate is after or equal to 1971-01-01 | |
| is in (month) | Date and time | HireDate is in month March | N/A | 
| is on (day of the week) | Date and time | PublicationDate is on day of the week Friday | N/A | 
| is on (day of the month) | Date and time | PublicationDate is on day of the month 16 | N/A | 
| is true | Boolean | Validity is true | N/A | 
| is false | Boolean | Validity is false | N/A | 
| is equal to | Boolean | Access is equal to Validity | These operators let you compare two variables of boolean type. | 
| is not equal to | Boolean | Access is not equal to Validity |