请教,在 conditions.store(:date, params[:date]) @saledatas = Saledata.where(conditions).order('id DESC').page(params[:page])
基础上,多加一个 col1 IS NOT NULL , 咋写啊?
你可以像写 SQL 一样任意写 where 语句的:
date = Date.parse(params[:date]) where("date = ? AND col1 IS NOT NULL", date)
where.not(col1 :nil)