标签: ruby-on-rails ruby
在ruby中我必须编写一个方法,我必须从那些具有域"stackoverflow.com"和other than this email domain的电子邮件ID的员工的表中检索id。
"stackoverflow.com"
other than this email domain
此处应该有单独的方法...
表名:人,属性名称:电子邮件。请建议方法?
答案 0 :(得分:1)
People.find(:all,:select =>'id',:conditions => [“email like?”,'%stackoverflow.com'))