Mysql
 sql >> Baza danych >  >> RDS >> Mysql

Negatywny stan w Join

Masz wiele sposobów na użycie left join with is null lub 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'
)

Aby zwiększyć wydajność , może być konieczne dodanie indeksu, jeśli nie został jeszcze dodany

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. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Korupcja InnoDB w Xampp

  2. Jaki jest najlepszy sposób w MySQL, aby sprawdzić, ile godzin ma coś?

  3. MySQL. Produkty niesprzedane w okresie

  4. Jak zwrócić pozycję argumentu na liście argumentów w MySQL?

  5. Zamów wybór na podstawie wyników łączenia (sortuj konwersacje w ostatniej wysłanej wiadomości)