Mysql
 sql >> Database >  >> RDS >> Mysql

SQL:seleziona tutti i valori univoci nella tabella A che non sono nella tabella B

select distinct id 
from TableA a
where not exists (
    select id 
    from TableB 
    where id = a.id
)