Skip to content

Commit

Permalink
Add Between expression to binary expression docs
Browse files Browse the repository at this point in the history
  • Loading branch information
AmrDeveloper committed Jun 29, 2023
1 parent 7aeab10 commit bf0588f
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions docs/expression/binary.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,17 @@ Used to perform arithmetic operators on number types.

---

## Logical Expressions
### Logical Expressions

- `|` or `or`: used to calculate or between two booleans,
- `&` or `and`: used to calculate and between two booleans,
- `^` or `xor`: used to calculate xor between two booleans,
- `^` or `xor`: used to calculate xor between two booleans,

---

### Between Expression
Used to check if value is between range start and end included

```SQL
SELECT commit_count FROM branches WHERE commit_count BETWEEN 2 .. 30000
```

0 comments on commit bf0588f

Please sign in to comment.