0

こんにちは私はレールとアクティブレコードを使用していますが、アクティブレコードクエリに問題があります。

session[:profile_ids] = [2,4,5]  
@profiles = UserProfile.where("key = ? and id in (?)", 'Noc_Address',
     session[:profile_ids])

しかし、私はこのエラーを受け取ります:

Mysql::Error: You have an error in your SQL syntax; check the manual that 
corresponds to your MySQL server version for the right syntax to use near 
'key = 'Noc_Address')' at line 1: SELECT `user_profiles`.* FROM 
`user_profiles`  WHERE (id in (361) and key = 'Noc_Address')

どうすれば修正できますか?

ありがとう。

4

1 に答える 1

4

KEY予約語なので、エスケープする必要があります。

@profiles = UserProfile.where("`key` = ? and id in (?)", 'Noc_Address', session[:profile_ids])

または、Rails にこれを処理させます。

@profiles = UserProfile.where(key: 'Noc_Address', id: session[:profile_ids])
于 2012-06-07T08:03:28.140 に答える