Mysql
 sql >> Base de Dados >  >> RDS >> Mysql

MySQL Mostra linhas que existem em uma tabela, mas não em outra


Uma simples junção esquerda?
SELECT organisation.*
FROM organisation
LEFT JOIN srp_reseller_buffer ON
    (organisation.organisation_id = srp_reseller_buffer.organisation.id AND property_id = 'X')
WHERE srp_reseller_buffer.organisation_id IS NULL

Registros que não existem no lado 'direito' (srp_reseller) serão nulos.