diff --git a/queries.md b/queries.md
index 402cb651a8..1d47735cb4 100644
--- a/queries.md
+++ b/queries.md
@@ -13,7 +13,7 @@
- [Where Clauses](#where-clauses)
- [Or Where Clauses](#or-where-clauses)
- [Where Not Clauses](#where-not-clauses)
- - [Where Any / All Clauses](#where-any-all-clauses)
+ - [Where Any / All / None Clauses](#where-any-all-none-clauses)
- [JSON Where Clauses](#json-where-clauses)
- [Additional Where Clauses](#additional-where-clauses)
- [Logical Grouping](#logical-grouping)
@@ -502,8 +502,8 @@ The `whereNot` and `orWhereNot` methods may be used to negate a given group of q
})
->get();
-
-### Where Any / All Clauses
+
+### Where Any / All / None Clauses
Sometimes you may need to apply the same query constraints to multiple columns. For example, you may want to retrieve all records where any columns in a given list are `LIKE` a given value. You may accomplish this using the `whereAny` method:
@@ -549,6 +549,29 @@ WHERE published = true AND (
)
```
+The `whereNone` method may be used to retrieve records where none of the given columns match a given constraint:
+
+ $posts = DB::table('albums')
+ ->where('published', true)
+ ->whereNone([
+ 'title',
+ 'lyrics',
+ 'tags',
+ ], 'like', '%explicit%')
+ ->get();
+
+The query above will result in the following SQL:
+
+```sql
+SELECT *
+FROM albums
+WHERE published = true AND NOT (
+ title LIKE '%explicit%' OR
+ lyrics LIKE '%explicit%' OR
+ tags LIKE '%explicit%'
+)
+```
+
### JSON Where Clauses