我有一个带有 2 个字段的 MySQL 表:id
,name
我必须执行这样的查询:
SELECT id,
name,
5 AS tot
FROM examples
在rails中,我有这个表的模型:
def Example < ActiveRecord::Base
attr_accessor :tot
end
如果我尝试执行此操作:
Example.select("examples.*, 5 as tot")
模型的变量 tot 对于每一行都是空的。
为什么?
如何分配模型变量中不存在的列的值?