【发布时间】:2019-01-22 01:14:45
【问题描述】:
我想查找work_end_at IS NULL的记录。
work_end_at 的类型是datetime。
而且,我试试这个WorkingHistory.where("work_end_at IS NULL")。
我得到一个空的结果。但是,id 为 532 的记录是我要查找的记录。
红宝石版本:2.1.5
rails 版本:4.0.4
WorkingHistory.where("work_end_at IS NULL")
SELECT `working_histories`.* FROM `working_histories` WHERE (work_end_at IS NULL)
[]
编辑:
# console result
WorkingHistory.where(work_end_at: [nil, ""])
SELECT `working_histories`.* FROM `working_histories` WHERE ((`working_histories`.`work_end_at` = '' OR `working_histories`.`work_end_at` IS NULL))
[]
WorkingHistory.where(work_end_at: nil)
SELECT `working_histories`.* FROM `working_histories` WHERE `working_histories`.`work_end_at` IS NULL
[]
#WorkingHistory.find(532)
SELECT `working_histories`.* FROM `working_histories` WHERE `working_histories`.`id` = 532 LIMIT 1
#<WorkingHistory:0x0055d8737a8838> {
:id => 532,
:user_id => 63,
:contract_id => 220,
:work_start_at => Thu, 05 Jul 2018 13:54:28 CST +08:00,
:created_at => Thu, 05 Jul 2018 13:54:33 CST +08:00,
:updated_at => Thu, 16 Aug 2018 11:13:21 CST +08:00,
:work_end_at => nil,
:work_time_sec => 3721,
:contract_milestone_id => 822
}
# WorkingHistory model
class WorkingHistory < ActiveRecord::Base
belongs_to :user
belongs_to :contract
belongs_to :contract_milestone
has_one :memo
has_many :snapshots
has_many :details, class_name: 'WorkingHistoryDetail'
scope :custom_region, -> (date) { where(work_start_at: date) }
scope :custom_day, -> (date) { where(work_start_at: date.beginning_of_day..date.end_of_day) }
scope :custom_week, -> (date) { where(work_start_at: date.beginning_of_week..date.end_of_week) }
scope :custom_month, -> (date) { where(work_start_at: date.beginning_of_month..date.end_of_month) }
scope :custom_year, -> (date) { where(work_start_at: date.beginning_of_year..date.end_of_year) }
scope :relate, -> (datetime) { where('work_start_at < ? && work_end_at >= ?', datetime, datetime) }
scope :current, -> { where('work_start_at < ? && work_end_at = ?', Time.zone.now, '0000-00-00 00:00:00') }
scope :cross_cycle_working, -> { where('dayofweek(work_start_at) = ? AND dayofweek(work_end_at) = ?', 6, 1) }
scope :not_end_or_end_at_today, -> { where('work_end_at >= ?', Time.zone.today.beginning_of_day) }
scope :without_end_at, -> { where("work_end_at IS NULL or work_end_at = ''") }
before_save :assign_to_contract_milestone
def end_working?
self.work_end_at.present?
end
def update_work_time_sec
return unless self.end_working?
limit_hours = contract.limit_hours * 3600
total_working_time = contract_milestone.working_histories.where("working_histories.id != ?", self.id).sum(:work_time_sec)
details_sum = self.details.summation
if (details_sum + total_working_time) > limit_hours
difference = (limit_hours - total_working_time) > 0 ? (limit_hours - total_working_time) : 0
self.update!(work_time_sec: difference)
else
secs = details_sum > 0 ? details_sum : 0
self.update!(work_time_sec: secs)
end
end
private
def work_end_and_yet_assign?
work_time_sec.present? && contract_milestone_id.blank?
end
end
# db schema
create_table "working_histories", force: true do |t|
t.integer "user_id"
t.integer "contract_id"
t.datetime "work_start_at"
t.datetime "created_at"
t.datetime "updated_at"
t.datetime "work_end_at"
t.integer "work_time_sec", default: 0, null: false
t.integer "contract_milestone_id"
t.boolean "finish", default: false
end
编辑:
#The result of querying the data directly with MySQL
mysql> SELECT * FROM working_histories where `working_histories`.`id` = 532;
+-----+---------+-------------+---------------------+---------------------+---------------------+---------------------+---------------+-----------------------+--------+
| id | user_id | contract_id | work_start_at | created_at | updated_at | work_end_at | work_time_sec | contract_milestone_id | finish |
+-----+---------+-------------+---------------------+---------------------+---------------------+---------------------+---------------+-----------------------+--------+
| 532 | 63 | 220 | 2018-07-05 05:54:28 | 2018-07-05 05:54:33 | 2018-08-16 03:13:21 | 0000-00-00 00:00:00 | 3721 | 822 | 1 |
+-----+---------+-------------+---------------------+---------------------+---------------------+---------------------+---------------+-----------------------+--------+
1 row in set (0.01 sec)
【问题讨论】:
-
始终粘贴输出内容而不是图像
-
可以添加
WorkingHistory.find(532)的输出吗? -
你可以直接在 DB 中查询这个对象来直接查看它的值,而不需要 Rails 吗?您使用的是哪个数据库?
-
@TyroneWilson 我添加了查询的输出。
-
@mefe 我无法直接访问数据库。数据库是 AWS RDS MySQL。
标签: mysql sql ruby-on-rails scope