PostgreSQL
 sql >> Base de Dados >  >> RDS >> PostgreSQL

Como faço para pegar uma subconsulta DISTINCT ON que é ordenada por uma coluna separada e torná-la rápida?


Gostaria de saber se você pode fazer isso funcionar:
select article_id, id, article_published_date
from prediction p
where p.prediction_date = (select max(p2.prediction_date)
                           from prediction p2
                           where p2.article_id = p.article_id
                          )
order by article_published_date desc;

Em seguida, use estes dois índices:
  • (article_published_date desc, prediction_date, article_id, id)
  • (article_id, prediction_date desc) .