sql >> Database >  >> RDS >> Mysql

Oplossing voor het vinden van dubbele records met betrekking tot soa en ouder-kindrelatie

De volgende SQL lijkt te werken

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' )
  )
"

Met ActiveRecord kunt u dit resultaat krijgen met select_value :

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

Ik ben echter niet zo zeker van de prestaties



  1. Oracle-verschillen tussen NVL en Coalesce

  2. com.mysql.jdbc.exceptions.jdbc4.MySQLNonTransientConnectionException:in mysql

  3. Kan ik de ALTER-tabel ongedaan maken in - MySQL?

  4. Mysql:onmogelijk waar opgemerkt na het lezen van const-tabellen