Improve the documentation and guide about where.not

This commit is contained in:
vy0b0x 2022-03-08 04:22:55 +00:00
parent 645239817d
commit 891227cef8
2 changed files with 19 additions and 0 deletions

View File

@ -40,6 +40,13 @@ module ActiveRecord
#
# User.where.not(name: "Jon", role: "admin")
# # SELECT * FROM users WHERE NOT (name == 'Jon' AND role == 'admin')
#
# If there is a non-nil condition on a nullable column in the hash condition, the records that have
# nil values on the nullable column won't be returned.
# User.create!(nullbale_country: nil)
# User.where.not(nullable_country: "UK")
# # SELECT * FROM users WHERE NOT (nullable_country = 'UK')
# # => []
def not(opts, *rest)
where_clause = @scope.send(:build_where_clause, opts, rest)

View File

@ -666,6 +666,18 @@ In other words, this query can be generated by calling `where` with no argument,
SELECT * FROM customers WHERE (customers.orders_count NOT IN (1,3,5))
```
If a query has a hash condition with non-nil values on a nullable column, the records that have `nil` values on the nullable column won't be returned. For example:
```ruby
Customer.create!(nullable_contry: nil)
Customer.where.not(nullable_country: "UK")
=> []
# But
Customer.create!(nullable_contry: "UK")
Customer.where.not(nullable_country: nil)
=> [#<Customer id: 2, nullable_contry: "UK">]
```
[`where.not`]: https://api.rubyonrails.org/classes/ActiveRecord/QueryMethods/WhereChain.html#method-i-not
### OR Conditions