Skip to content

Commit

Permalink
Add note about whereIntegerInRaw
Browse files Browse the repository at this point in the history
  • Loading branch information
ahinkle committed May 14, 2020
1 parent a9830c2 commit 2f189cb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions queries.md
Original file line number Diff line number Diff line change
Expand Up @@ -406,6 +406,8 @@ The `whereNotIn` method verifies that the given column's value is **not** contai
->whereNotIn('id', [1, 2, 3])
->get();

> {note} If you are binding a large integer dataset, the `whereIntegerInRaw` or `whereIntegerNotInRaw` method may be used to greatly reduce your memory usage.
**whereNull / whereNotNull / orWhereNull / orWhereNotNull**

The `whereNull` method verifies that the value of the given column is `NULL`:
Expand Down

0 comments on commit 2f189cb

Please sign in to comment.