Re: Q on views and performance

From: "Dean Gibson (DB Administrator)" <postgresql(at)ultimeth(dot)com>
To: pgsql-performance(at)postgresql(dot)org
Subject: Re: Q on views and performance
Date: 2008-02-23 15:29:55
Message-ID: 47C03BF3.7070807@ultimeth.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

On 2008-02-23 07:08, Dean Gibson (DB Administrator) wrote:
> ...
>
>
> SELECT word1, word1
> FROM S JOIN txt ON word = word1
> WHERE type1 = <int1> AND type2 = <int2>;
>
> ...
Oops that should be:

SELECT word1, word2
FROM S JOIN txt ON word = word1
WHERE type1 = <int1> AND type2 = <int2>;

--
Mail to my list address MUST be sent via the mailing list.
All other mail to my list address will bounce.

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Kynn Jones 2008-02-23 16:21:49 Re: Q on views and performance
Previous Message Dean Gibson (DB Administrator) 2008-02-23 15:08:57 Re: Q on views and performance