Skip to content

Commit

Permalink
Add "IS" operators to Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
furti committed Jan 19, 2019
1 parent f42915b commit 74908eb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,10 @@ Normally you want to compare Attributes for some given values. A comparison is w
- **>=**: Checks if the left value is greater than or equals to the right value
- **<=**: Checks if the left value is less than or equals to the right value

There are also two special comparison operators available to check for ```None```. This normally means, that a given object does not have the given attribute or it has no value assigend.
- **IS NULL**: Checks if the left value is None.
- **IS NOT NULL**: Check if the left value is not None. This is especially usefull to filter all objects that do not have the given attribute assigned.

To combine multiple comparisons you can use the ```AND``` and ```OR``` keywords. You can also use Brackets ```(``` ```)``` to build complex expressions.

### Group By \<GroupingColumns>
Expand Down

0 comments on commit 74908eb

Please sign in to comment.