这是我的模型:
病人:
has_many :patient_records
病历:
belongs_to :patient
has_many :progress_reports
进度报告:
has_one :patient_record
我正在尝试生成的查询是在包含或加入患者记录表的同时获取所有progress_reports 大于或等于7 天的患者(使用progress_reports 中的date_of_report 列)...我一直在为此工作这么久,我撞到了一堵砖墙。