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

Negative Bedingung in Join

Sie haben viele Möglichkeiten, left join with is null zu verwenden oder not exists

Select 
un.user_id 
from user_notifications un
left join user_push_notifications upn 
on upn. user_id = un.user_id  and un.notification_id  = 'xxxxyyyyyzzzz' 
where upn. user_id is null

Select 
un.user_id 
from user_notifications un
where 
un.notification_id  = 'xxxxyyyyyzzzz' 
and not exists
(
 select 1 from user_push_notifications upn 
 where 
 un.user_id = upn.user_id 
 and upn.notification_id = 'xxxxyyyyyzzzz'
)

Um die Leistung zu steigern, müssen Sie möglicherweise einen Index hinzufügen, falls er noch nicht hinzugefügt wurde

alter table user_notifications add index user_notifi_idx(user_id,notification_id);
alter table user_push_notifications add index user_notifp_idx(user_id,notification_id);