last_nameが空のすべてのユーザーをカウントしようとしています。
私はそれらを試していますが、機能しません
User.where("last_name = ?", "").count
User.where("last_name = ?", nil).count
nilに対してすべてを呼び出すことは機能しますが、last_nameが空である人を選択する必要があります。
User.where("last_name != ?", nil).count
last_nameが空のすべてのユーザーをカウントしようとしています。
私はそれらを試していますが、機能しません
User.where("last_name = ?", "").count
User.where("last_name = ?", nil).count
nilに対してすべてを呼び出すことは機能しますが、last_nameが空である人を選択する必要があります。
User.where("last_name != ?", nil).count