我有一个控制器。在这个控制器中,我有这个查询:
def show
@registration = Registration.where("owner_id = ? OR send_to_id = ? OR cc_id = ?", current_user, current_user, [current_user].to_yaml)
end
它正在使用owner_id
和send_to_id
按钮cc_id
,但它无效。
您能否提供一些有关如何查询序列化数据的提示?
更新 我正在使用MySQL。