Nếu bạn muốn chuyển một mảng thì tốt hơn nên viết
@applicants = Applicant
.where("applicants.first_name LIKE ?", "%#{people}%")
.where(status: ["new", "in-review"])
Hoặc sử dụng squeel đá quý.
@applicants = Applicant.where{ (status.in(["new", "in-review"]) & (first_name =~ "%#{people}%") }