ruby-on-rails-3 – 在rails3中使用IN运算符查找位置
发布时间:2020-12-17 02:52:27 所属栏目:百科 来源:网络整理
导读:我试图运行如下的SQL select name from appointments where location_id in (2,3,4) 以下不起作用.我正在使用PostgreSQL a = [2,4]Appointment.select(:name).where("location_id IN ?",a)ActiveRecord::StatementInvalid: PGError: ERROR: syntax error at
我试图运行如下的SQL
select name from appointments where location_id in (2,3,4) 以下不起作用.我正在使用PostgreSQL a = [2,4] Appointment.select(:name).where("location_id IN ?",a) ActiveRecord::StatementInvalid: PGError: ERROR: syntax error at or near "2" LINE 1: ... FROM "appointments" WHERE (location_id IN 2,4) ^ : SELECT name FROM "appointments" WHERE (location_id IN 2,4) 解决方法
你可以用这个:
Appointment.select(:name).where(:location_id => [2,4]) 希望这可以帮助 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |