Table.find(:all, :conditions => ["other_column = ?", params[:tag]) # or :first, instead of :all
Don't use @params anymore, BTW. And although it's allowed, I think the symbol as a key to the params hash (params[:tag]) is generally favored over using a string (params["tag"]).