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

Aderire ed escludere MySQL?

select b.id, b.* 
from b
left join a on a.id = b.id
where a.id is null

Questo estrarrà tutte le righe in B che non hanno righe corrispondenti in A. Puoi aggiungere un IP specifico nella clausola where se vuoi provare solo per quell'ip.