Re: another query optimization question

Поиск
Список
Период
Сортировка
От Stephan Szabo
Тема Re: another query optimization question
Дата
Msg-id 20040130100845.E58632@megazone.bigpanda.com
обсуждение исходный текст
Ответ на another query optimization question  (David Teran <david.teran@cluster9.com>)
Ответы Re: another query optimization question  (David Teran <david.teran@cluster9.com>)
Список pgsql-performance
On Fri, 30 Jan 2004, David Teran wrote:

> select
> sum(job_property_difference(t0.int_value, t1.int_value)) as rank
>    from
>    job_property t0,
>    job_property t1
>    where
>    t0.id_job_profile = 911
>    and t0.id_job_attribute = t1.id_job_attribute
>    and t1.id_job_profile in (select id_job_profile from unemployed)
>    and t1.id_job_profile <> 911;
>
> results in a query plan result:

Can we see explain analyze output for the query, it'll give more
information about actual time and row counts than plain explain.

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

Предыдущее
От: PC Drew
Дата:
Сообщение: Re: another query optimization question
Следующее
От: David Teran
Дата:
Сообщение: Re: another query optimization question