ROR +使用表格从表中搜索域名

时间:2011-03-10 07:00:15

标签: ruby-on-rails ruby

在ruby中我必须编写一个方法,我必须从那些具有域"stackoverflow.com"other than this email domain的电子邮件ID的员工的表中检索id。

此处应该有单独的方法...

表名:人,属性名称:电子邮件。请建议方法?

1 个答案:

答案 0 :(得分:1)

People.find(:all,:select =>'id',:conditions => [“email like?”,'%stackoverflow.com'))