From: | Martijn van Oosterhout <kleptog(at)svana(dot)org> |
---|---|
To: | Arturo Perez <aperez(at)hayesinc(dot)com> |
Cc: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: xpath_string and group by |
Date: | 2006-08-29 12:03:34 |
Message-ID: | 20060829120334.GC22806@svana.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
On Tue, Aug 29, 2006 at 07:05:44AM -0400, Arturo Perez wrote:
> > > select note, count(aDate) from
> > > (select lower(xpath_string(note, '//Thing')) as note, aDate from
> > > theTable) as foo
> > > group by note
> >
> > This is about the same thing, so why not use that?
>
> You're right, it is almost the same thing. But the second form loses
> the case of the original - everything is returned lower case. If I must
> I must but I'ld like to preserve the case is possible.
Oh I see, you want to group thing ignoring case, but want to keep the
case and presumably you don't care which version you get.
Well, how about:
select max(note), count(aDate) from
(select xpath_string(note, '//Thing') as note, aDate from theTable) as foo
group by lower(note);
Have a nice day,
--
Martijn van Oosterhout <kleptog(at)svana(dot)org> http://svana.org/kleptog/
> From each according to his ability. To each according to his ability to litigate.
From | Date | Subject | |
---|---|---|---|
Next Message | garcez | 2006-08-29 12:08:50 | Postgres |
Previous Message | Geoffrey | 2006-08-29 11:58:00 | Re: speeding up big query lookup |