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

SQL:Wählen Sie alle eindeutigen Werte in Tabelle A aus, die nicht in Tabelle B enthalten sind

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