| From: | Richard Huxton <dev(at)archonet(dot)com> |
|---|---|
| To: | Loredana Curugiu <loredana(dot)curugiu(at)gmail(dot)com> |
| Cc: | pgsql-novice(at)postgresql(dot)org, pgsql-sql(at)postgresql(dot)org |
| Subject: | Re: JOIN |
| Date: | 2007-06-05 12:13:46 |
| Message-ID: | 4665537A.2060601@archonet.com |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-novice pgsql-sql |
Loredana Curugiu wrote:
> Any help, please?
>> 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?
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.
--
Richard Huxton
Archonet Ltd
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Loredana Curugiu | 2007-06-05 12:18:18 | Re: [SQL] JOIN |
| Previous Message | Loredana Curugiu | 2007-06-05 11:26:13 | Re: JOIN |
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Loredana Curugiu | 2007-06-05 12:18:18 | Re: [SQL] JOIN |
| Previous Message | Loredana Curugiu | 2007-06-05 11:26:13 | Re: JOIN |