Re: query

From: Bruno Wolff III <bruno(at)wolff(dot)to>
To: superboy143 <superboy143(at)gmail(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: query
Date: 2006-02-10 06:11:29
Message-ID: 20060210061129.GA26002@wolff.to
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Tue, Feb 07, 2006 at 01:45:50 -0800,
"superboy143 (sent by Nabble.com)" <lists(at)nabble(dot)com> wrote:
>
> I have a table in which I have a field with format like 100101. It has many values like 100101, 100102, 100103, 100201, 100202, 100301. I have to write a query such that I have to get only distinct values such that they contain only the substring I need. If I give 10 as substring, then it should return only 100101 or 100102 but not both i.e if the last two characters are not same it should not return both of them. It should return only values starting with 10 the middle two values should be distinct and the last two characters may be anything.

You can probably use the Postgres extension DISTINCT ON to do what you want.

In response to

  • query at 2006-02-07 09:45:50 from superboy143 (sent by Nabble.com)

Responses

  • Re: query at 2006-02-10 16:22:03 from Ken Hill

Browse pgsql-sql by date

  From Date Subject
Next Message superboy143 (sent by Nabble.com) 2006-02-10 06:18:09 date
Previous Message BigSmoke 2006-02-09 20:41:09 Re: unique constraint instead of primary key? what