sql >> Database >  >> RDS >> Mysql

Negatieve voorwaarde in Join

Je hebt veel manieren om left join with is null . te gebruiken of 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'
)

Om de prestaties te verbeteren, moet u mogelijk een index toevoegen als deze nog niet is toegevoegd

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);


  1. Oracle AQ uitstelorder

  2. Hoe ListView vullen met db in de activamap?

  3. Heroku Postgres DB langzamer na upgrade

  4. Tel het aantal exemplaren van een subtekenreeks in een MySQL-kolom