1
Por que o CTE é muito pior do que subconsultas em linha
Estou tentando entender melhor como o planejador de consultas funciona no postgresql. Eu tenho esta consulta: select id from users where id <> 2 and gender = (select gender from users where id = 2) order by latest_location::geometry <-> (select latest_location from users where id = 2) ASC limit 50 …