Re: slow subselects

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: slow subselects
Дата
Msg-id 22952.1171957386@sss.pgh.pa.us
обсуждение исходный текст
Ответ на slow subselects  ("Marko Niinimaki" <manzikki@gmail.com>)
Ответы Re: slow subselects  ("Marko Niinimaki" <manzikki@gmail.com>)
Список pgsql-performance
"Marko Niinimaki" <manzikki@gmail.com> writes:
> I'm having a surprising performance problem with the following simple
> 'highscore report'

> select studentid, (select max(score) from
> studentprofile prof where prof.studentid = students.studentid) from students;

> I have indexes on students(studentid) and studentprofile(studentid).

The optimal index for this would be on studentprofile(studentid,score).
A quick test says that PG 8.1 knows what to do with such an index ---
what does EXPLAIN show for this query?

            regards, tom lane

В списке pgsql-performance по дате отправления:

Предыдущее
От: ismo.tuononen@solenovo.fi
Дата:
Сообщение: Re: slow subselects
Следующее
От: "Jim C. Nasby"
Дата:
Сообщение: Re: Query Optimization