Re: Query runs too long for indexed tables

Поиск
Список
Период
Сортировка
От Andrus
Тема Re: Query runs too long for indexed tables
Дата
Msg-id e106r0$1h75$1@news.hub.org
обсуждение исходный текст
Ответ на Query runs too long for indexed tables  ("Andrus" <eetasoft@online.ee>)
Ответы Re: Query runs too long for indexed tables  (PFC <lists@peufeu.com>)
Список pgsql-performance
> Why not use a LEFT JOIN for this ?

UPDATE firma1.rid SET rid.toode=NULL
LEFT join firma1.toode using(toode)
         WHERE rid.toode IS NOT NULL AND toode.toode IS NULL;

Causes:

ERROR:  syntax error at or near "LEFT" at character 41

outer joins are not supported in Postgres UPDATE command.

Andrus.



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

Предыдущее
От: PFC
Дата:
Сообщение: Re: Query runs too long for indexed tables
Следующее
От: PFC
Дата:
Сообщение: Re: Query runs too long for indexed tables