Re: Problems with substring

Поиск
Список
Период
Сортировка
От Duncan Adams (DNS)
Тема Re: Problems with substring
Дата
Msg-id 034A824BAA3FBA4CA0CBEF1031A02F350E3EDB@zablv02001.vodacom.corp
обсуждение исходный текст
Ответ на Problems with substring  ("Duncan Adams (DNS)" <duncan.adams@vcontractor.co.za>)
Список 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 по дате отправления:

Предыдущее
От: "Josh Berkus"
Дата:
Сообщение: Re: Problems with substring
Следующее
От: "Josh Berkus"
Дата:
Сообщение: Re: pl/pgsql and returns timestamp type