I want to do something like
User.select(...).where(:name != nil)
not recording something like
User.select(...).to_a.find_all {|user| user.name}
I can choose null values, but not for non-empty ones. Is there a trick or Sequel external domain?
source share