Re: Sorting Challenge

From: Bruno Wolff III <bruno(at)wolff(dot)to>
To: operationsengineer1(at)yahoo(dot)com
Cc: pgsql-novice(at)postgresql(dot)org
Subject: Re: Sorting Challenge
Date: 2005-08-31 03:33:42
Message-ID: 20050831033342.GB3597@wolff.to
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

On Tue, Aug 30, 2005 at 15:58:40 -0700,
operationsengineer1(at)yahoo(dot)com wrote:
>
> i have a lot more data like this, but i want to keep
> it simple. the first two alphas represent an area and
> the foloowing digit(s) represent a unique id.
>
> the data is currently held in a text field.

It generally isn't a good idea to store multiple fields in one column.
You should probably split this into two columns unless there is a significant
performance problem with doing so.

If there is than you might try creating an operator class that properly
compares these strings. Then you can use that operator class to do sorts
or create btree indexes.

In response to

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message operationsengineer1 2005-08-31 05:51:34 Re: Sorting Challenge
Previous Message Bruno Wolff III 2005-08-31 03:25:42 Re: pgsql installation problem!