Using Comparison Operators in the WHERE Clause
✅ Available Operators:
Operator | Meaning | Example |
|---|---|---|
| Equal to |
|
| Not equal to |
|
| Less than |
|
| Greater than |
|
| Less than or equal to |
|
| Greater than or equal to |
|
Example 1: Filter All Male from the Source DE (Where Gender = 'Male')
Target DE:
From the Source DE (Where Region != 'North'/ Where Region <> 'North')
Result of Where Region != 'North' - Target DE
Ran Both Activities in the same Workflow:
Logical Operators: AND, OR, NOT
AND:
WHERE Region= 'North' AND Gender= 'Female'
Target DE with No Records with the selected Clause:
Comments
Post a Comment