Skip to content

Commit 4440c22

Browse files
committed
Merge pull request #587 from kapouer/patch-2
Document orm.not_in
2 parents defb735 + d0a035f commit 4440c22

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Readme.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -474,6 +474,7 @@ a few examples to describe it:
474474
{ col1: orm.not_between(123, 456) } // `col1` NOT BETWEEN 123 AND 456
475475
{ col1: orm.like(12 + "%") } // `col1` LIKE '12%'
476476
{ col1: orm.not_like(12 + "%") } // `col1` NOT LIKE '12%'
477+
{ col1: orm.not_in([1, 4, 8]) } // `col1` NOT IN (1, 4, 8)
477478
```
478479

479480
#### Raw queries

0 commit comments

Comments
 (0)