A menudo, puede hacer que dichas consultas se ejecuten más rápido trabajando en el distinct
usando un group by
en cambio:
select my_table.foo
from my_table
where [whatever where conditions you want]
group by foo;
A menudo, puede hacer que dichas consultas se ejecuten más rápido trabajando en el distinct
usando un group by
en cambio:
select my_table.foo
from my_table
where [whatever where conditions you want]
group by foo;