1

元のロジックはこちら

(scrape_datas = ScrapeData.find(
  :all, :conditions => 
  "artist_status = 'NOT_FOUND' 
   AND blacklisted = 1 
   AND extracted = 0 
   and not EXISTS(
     SELECT * FROM artist_name_suggestions where original = artist_name
   )

最初の部分をうまく分割できました

scrape_datas = ScrapeData.where(
  :artist_status => 'NOT_FOUND',
  :blacklisted   => 1,
  :extracted     => 0
)

「and not EXISTS」クエリをミックスに入れるのに問題がありますが

and not EXISTS(
  SELECT * FROM artist_name_suggestions where original = artist_name
)

ありがとう!

4

1 に答える 1

1

まず、単純なスコープを抽出できます。

scope :not_found, where(:artist_status => 'NOT_FOUND')
scope :blacklisted, where(:blacklisted => 1)
scope :extracted, where(:extracted => 0)

次に、クエリ メソッドを追加します (artist_name は、scrape_datas の列であると仮定します)。

def self.no_suggestions
  scrape_datas = ScrapeData.arel_table
  suggestions = ArtistNameSuggestion.arel_table
  where(ArtistNameSuggestion.where(
    suggestions[:original].eq(scrape_datas[:artist_name])
  ).exists.not)
end

これで、次のようなことができます。

ScrapeData.not_found.blacklisted.extracted.no_suggestions
于 2012-11-28T04:21:46.720 に答える