Re: Index creation question for expression (col1 || '-' || col2) - Mailing list pgsql-sql

From Bruno Wolff III
Subject Re: Index creation question for expression (col1 || '-' || col2)
Date
Msg-id 20050708165714.GA9501@wolff.to
Whole thread Raw
In response to Index creation question for expression (col1 || '-' || col2)  (Ying Lu <ying_lu@cs.concordia.ca>)
List pgsql-sql
On Fri, Jul 08, 2005 at 12:08:41 -0400, Ying Lu <ying_lu@cs.concordia.ca> wrote:
> Greetings,
> 
> A question about creating index for the following expression.
> 
> CREATE INDEX idx_t1 ON test (col1 || '-' || col2);
> 
> May I know is it possible and how I may create index for the expression 
> such as "col1 || '-' || col2" for a table please?

You have already received some answers to this specific question.
However, you might consider a different solution to the underlying
problem. You can make a multicolumn index that for many purposes would
be better than the above functional index.


pgsql-sql by date:

Previous
From: Christopher Browne
Date:
Subject: Re: Make COUNT(*) Faster?
Next
From: Ying Lu
Date:
Subject: Re: Index creation question for expression (col1 || '-' ||