Mysql
 sql >> Datenbank >  >> RDS >> Mysql

Lösung zum Auffinden von doppelten Datensätzen mit STI und Eltern-Kind-Beziehung

Das folgende SQL scheint zu funktionieren

big_query = "
  SELECT EXISTS (
    SELECT 1
    FROM buyables b1
      JOIN buyables b2
        ON b1.shop_week_id = b2.shop_week_id
        AND b1.location_id = b2.location_id
    WHERE
      b1.parent_id != %1$d
      AND b2.parent_id = %1$d
      AND b1.type = 'Item'
      AND b2.type = 'Item'
    GROUP BY b1.parent_id
    HAVING COUNT(*) = ( SELECT COUNT(*) FROM buyables WHERE parent_id = %1$d AND type = 'Item' )
  )
"

Bei ActiveRecord erhalten Sie dieses Ergebnis mit select_value :

class Basket < Buyable
  def has_duplicate
    !!connection.select_value( big_query % id )
  end
end

Bei der Leistung bin ich mir jedoch nicht so sicher