gpt4 book ai didi

ruby-on-rails-3 - 检查日期不为空? (铁轨,阿雷尔)

转载 作者:行者123 更新时间:2023-12-04 07:00:42 26 4
gpt4 key购买 nike

如果填写了日期(如 in,非空),您如何检查 Rails3(有或没有 Arel)?我知道你可以通过使用:

obj.where('PLANNED IS NOT NULL')

但是可以不使用 SQL 吗?
// SQL 
SELECT * FROM projecttasks WHERE planned IS not null

我试过:
# all tasks which have a date
tasks = Projecttask.where(:planned => !nil)

或者
# all task with no planned date (sql: is null)
Projecttask.where(:planned => nil)

但这不起作用。通常,如何在 NULL 和 NON NULL 列上执行“where”。

谢谢。

最佳答案

在 Rails 3 中:Projecttask.where('planned IS NOT NULL')
在 Rails 4 中,有一个新的 where.not 方法。

Projecttask.where.not(planned: nil)

User.where.not(name: nil)
# SELECT * FROM users WHERE name IS NOT NULL

关于ruby-on-rails-3 - 检查日期不为空? (铁轨,阿雷尔),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10396107/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com