Rails`NOT IN(null)`返回没有结果

时间:2013-08-11 21:30:26

标签: activerecord ruby-on-rails-4

当我的一个参数是一个空数组时,我正在尝试检索一些记录并遇到问题。我理解为什么查询没有返回任何结果,但我不知道在rails中处理它的最佳方法。在我的代码中,我正在调用

@user.trustees.where(["trustees.default = true AND trustees.id NOT IN (?)", trustees.map{ |t| t.id }])

当受托者数组实际包含对象时,这可以正常工作,但是当它不包含时,查询不返回任何内容,因为SQL生成结果

SELECT `users`.* 
FROM `users` 
INNER JOIN `trustees` ON `users`.`id` = `trustees`.`trustee_id` 
WHERE `trustees`.`truster_id` = 1 
AND (trustees.default = true 
AND trustees.id NOT IN (NULL))

避免我遇到NOT IN (NULL)问题的最简单方法是什么?

2 个答案:

答案 0 :(得分:6)

你可以这样做:

@user.trustees.where(default: true).where.not(id: trustees.map{ |t| t.id })

答案 1 :(得分:1)

为了更好的性能,请使用

@user.trustees.where(default: true).where.not(id: trustees.pluck(:id))

使用 pluck 代替 map ,在我正在使用的类似查询中,将加载时间从90毫秒大幅减少到3毫秒。