如何使用postgres_ext执行NOT查询

时间:2016-01-08 22:55:02

标签: ruby postgresql postgres-ext

是否可以使用postgres_ext使用链式方法执行NOT类型查询?

rules = Rule.where.overlap(:tags => ["foo"])

基本上想要与上面相反。谢谢!

1 个答案:

答案 0 :(得分:0)

在常规活动记录中,您可以使用.where.not,如本文所述:https://robots.thoughtbot.com/activerecords-wherenot但是查看postgres_ext的源代码我不知道它是否在该库中定义。您可以使用本机活动记录方法构建查询。