PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Soluzione per accelerare una query SELECT DISTINCT lenta in Postgres

Spesso, puoi velocizzare l'esecuzione di tali query aggirando il distinct utilizzando un group by invece:

select my_table.foo 
from my_table 
where [whatever where conditions you want]
group by foo;