PowerCenter
- PowerCenter 10.5
- All Products
Operator
| Definition
| Description
|
---|---|---|
=
| Equals
| Implies that the test result for the field is the same as the constraint value.
For example, SUM(field) is the same as the constraint value.
|
<>
| Does not equal
| Implies that the test result for the field is not the same as the constraint value.
|
<
| Is less than
| Implies that the test result for the field is less than the constraint value.
|
<=
| Is less than or equal to
| Implies that the test result for the field is less than or equal to the constraint value.
|
>
| Is greater than
| Implies that the test result for the field is greater than the constraint value.
|
>=
| Is greater than or equal to
| Implies that the test result for the field is greater than or equal to the constraint value.
|
~
| Is approximately the same as
| Implies that the test result for the field is approximately the same as the constraint value.
The approximate operator requires a threshold value. It only applies to numeric datatypes
|
Between
| Is between two values entered
| Implies that the test result for the field is between the two constants entered as the constraint value.
This operator is generally used for numeric, string, or datetime datatypes.
For example, to check if the EMP_ID is between 1000 and 2000, specify the following information in the single table test editor:
|
Not Between
| Is not between two values entered
| Implies that the test result for the field is not between the two constants entered as the constraint value.
This operator is generally used for numeric, string, or datetime datatypes.
For example, to check if the EMP_ID is not between 1000 and 2000, specify the following information in the single table test editor:
|
In
| Is included in a list of values entered
| Implies that the test result for the field is in the list of constants entered as the constraint value.
For example, to check if the ITEM_NAME is in ‘Chisel Point Knife’, ‘Medium Titanium Knife’, ‘Safety Knife’, specify the following information in the single table test editor:
|
Not In
| Is not included in a list of values entered
| Implies that the test result for the field is not in the list of constants entered as the constraint value.
For example, to check if the ITEM_NAME is not in ‘Chisel Point Knife’, ‘Medium Titanium Knife’, ‘Safety Knife’, specify the following information in the single table test editor:
|