Mysql
 sql >> Database >  >> RDS >> Mysql

Interfaccia di query Rails dove problema della clausola?

Se vuoi passare un array è meglio scrivere

@applicants = Applicant
    .where("applicants.first_name LIKE ?", "%#{people}%")
    .where(status: ["new", "in-review"])

Oppure usa squeel gemma.

@applicants = Applicant.where{ (status.in(["new", "in-review"]) & (first_name =~ "%#{people}%") }