Re: optimalisation with EXCEPT clause

Поиск
Список
Период
Сортировка
От Grzegorz Jaśkiewicz
Тема Re: optimalisation with EXCEPT clause
Дата
Msg-id j2m2f4958ff1004130823pa7b17227ld106923e0c4d6fc4@mail.gmail.com
обсуждение исходный текст
Ответ на optimalisation with EXCEPT clause  ("Kincel, Martin" <MKincel@soitron.com>)
Ответы Re: optimalisation with EXCEPT clause  ("Kincel, Martin" <MKincel@soitron.com>)
Список pgsql-general
if you have a primary key on the table, and you should, you might get better performance using LEFT JOIN.
EXCEPT will compare all columns, which might not be that fast, especially if those are text. (hence why I always tell others to use int as key in a table, but that's a different story). 


--
GJ

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

Предыдущее
От: "Kincel, Martin"
Дата:
Сообщение: optimalisation with EXCEPT clause
Следующее
От:
Дата:
Сообщение: Re: General question about speed of functions