Rails 3 эквивалент сложного SQL-запроса - PullRequest
2 голосов
/ 15 июня 2010

С учетом следующих моделей:

class Recipe < ActiveRecord::Base
  has_many :recipe_ingredients
  has_many :ingredients, :through => :recipe_ingredients
end

class RecipeIngredient < ActiveRecord::Base
  belongs_to :recipe
  belongs_to :ingredient
end

class Ingredient < ActiveRecord::Base
end

Как выполнить следующий запрос SQL с использованием Arel в Rails 3?

SELECT * FROM recipes WHERE NOT EXISTS (
  SELECT * FROM ingredients WHERE 
    name IN ('chocolate', 'cream') AND 
    NOT EXISTS (
      SELECT * FROM recipe_ingredients WHERE 
        recipe_ingredients.recipe_id = recipes.id AND 
        recipe_ingredients.ingredient_id = ingredients.id))

1 Ответ

10 голосов
/ 15 июня 2010

Я не уверен, как сделать реляционное деление, используя Arel или ActiveRecord.Если допустимо выполнить два запроса, это будет эквивалентно:

with_scope(includes(:recipes)) do
  cream_recipes = Ingredient.where(:name => "cream").first.recipes
  chocolate_recipes = Ingredient.where(:name => "chocolate").first.recipes
end
@recipes_with_chocolate_and_cream = cream_recipes & chocolate_recipes

Или вы можете просто передать SQL напрямую, используя find_by_sql .

...