sql >> Databáze >  >> RDS >> Mysql

Negativní stav v Join

Máte mnoho způsobů, jak pomocí left join with is null nebo 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'
)

Chcete-li zvýšit výkon, možná budete muset přidat index, pokud ještě není přidán

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. Vkládání dat SQL Serveru do Salesforce.com

  2. Omezení CHECK v MySQL nefunguje

  3. Uzamčení řádku v tabulce MYSQL během transakce

  4. Proč je velikost mého stolu více než 4x větší, než jsem očekával? (řádky*bajty/řádek)