Re: Problems with substring - Mailing list pgsql-novice

From Duncan Adams (DNS)
Subject Re: Problems with substring
Date
Msg-id 034A824BAA3FBA4CA0CBEF1031A02F350E3EDB@zablv02001.vodacom.corp
Whole thread Raw
In response to Problems with substring  ("Duncan Adams (DNS)" <duncan.adams@vcontractor.co.za>)
List pgsql-novice
Thanx to u and Stuart

i was really busting my head on this one.

-----Original Message-----
From: Josh Berkus [mailto:josh@agliodbs.com]
Sent: Tuesday, September 10, 2002 5:34 PM
To: Duncan Adams (DNS); pgsql-novice@postgresql.org
Subject: Re: [NOVICE] Problems with substring


Ducan,

> I am using postgres 7.1.3
> on redhat 7.2.

First, please consider upgrading.   7.2.1 has a lot of enhancements
over 7.1.3, and we're testing 7.3.0 now!

> drop view wm_ups_count;
> create view wm_ups_count as
> select
>  substring(phase from 1 for 1) as ups,
>  sys_key,
>  count(substring(phase from 1 for 1)) as phas_count
> from
>  power
> where
>  sys_key = 10
> group by
>  sys_key,
>  phase;
^^^^^^^^^^^^^

This is your problem.  It should be:
GROUP BY sys_key, substring(phase from 1 for 1);

If you GROUP BY something other than the columns you are displaying,
you will often see "duplicate" rows.

-Josh Berkus

______AGLIO DATABASE SOLUTIONS___________________________

---------------------------(end of broadcast)---------------------------
TIP 3: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to majordomo@postgresql.org so that your
message can get through to the mailing list cleanly

pgsql-novice by date:

Previous
From: "Josh Berkus"
Date:
Subject: Re: Problems with substring
Next
From: "Josh Berkus"
Date:
Subject: Re: pl/pgsql and returns timestamp type