You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adriane Ribeiro edited this page Nov 18, 2022
·
1 revision
# [RUIM]# Evitar o IN especialmente se a subquery retorna uma grande quantidade de registros Select*from Product p where productid IN
(select productid from TransactionHistory)
# [BOM]Select*from Product p where EXISTS
(select productid from TransactionHistory)