Domande taggate «subquery»

Termine SQL usato per descrivere quando un'istruzione `SELECT` viene utilizzata come parte di un'istruzione SQL più ampia. La dichiarazione più grande può essere DML e si trova sempre tra parentesi o parentesi.


4
La subquery di MySQL rallenta drasticamente, ma funzionano bene indipendentemente
Query 1: select distinct email from mybigtable where account_id=345 richiede 0.1s Query 2: Select count(*) as total from mybigtable where account_id=123 and email IN (<include all from above result>) richiede 0,2 secondi Query 3: Select count(*) as total from mybigtable where account_id=123 and email IN (select distinct email from mybigtable …
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.