Re: [SQL] JOIN

From: "Loredana Curugiu" <loredana(dot)curugiu(at)gmail(dot)com>
To: "Richard Huxton" <dev(at)archonet(dot)com>, pgsql-novice(at)postgresql(dot)org, pgsql-sql(at)postgresql(dot)org
Subject: Re: [SQL] JOIN
Date: 2007-06-05 12:18:18
Message-ID: 1c23c8e70706050518v19c56d21j873985125b930db@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice pgsql-sql

>> So I have the following query:>>

> >> SELECT SUM(A.count),
> >> A.theme,
> >> A.receiver,
> >> A.dates
> >> FROM my_table A
> >> INNER JOIN my_table B
> >> ON A.theme=B.theme
> >> AND A.receiver=B.receiver
> >> AND A.date=ANY(B.dates)
> >> GROUP BY A.theme,A.receiver, A.dates;
> [snip]
> >>
> >> The result is wrong. I don't know what it is wrong at my query.
> >> Please help.
>
> You don't actually say what's wrong. What are you expecting as output?

I am trying to say that sum column it is not calculated correctly.

Oh, and your "date" column isn't - it's a timestamp with time-zone. That
> might or might not cause confusion with daylight-saving-times.

Yes, I am working with timestamp with time zone .

Regards,
Loredana

In response to

  • Re: JOIN at 2007-06-05 12:13:46 from Richard Huxton

Responses

  • Re: JOIN at 2007-06-05 12:39:29 from Richard Huxton
  • Re: JOIN at 2007-06-05 12:45:19 from Gregory Stark

Browse pgsql-novice by date

  From Date Subject
Next Message Richard Huxton 2007-06-05 12:39:29 Re: JOIN
Previous Message Richard Huxton 2007-06-05 12:13:46 Re: JOIN

Browse pgsql-sql by date

  From Date Subject
Next Message Richard Huxton 2007-06-05 12:39:29 Re: JOIN
Previous Message Richard Huxton 2007-06-05 12:13:46 Re: JOIN