From: | Masaru Sugawara <rk73(at)sea(dot)plala(dot)or(dot)jp> |
---|---|
To: | Jakub Ouhrabka <jouh8664(at)ss1000(dot)ms(dot)mff(dot)cuni(dot)cz> |
Cc: | pgsql-sql(at)postgresql(dot)org |
Subject: | Re: difficult query |
Date: | 2002-05-05 05:43:16 |
Message-ID: | 20020505061938.1E8A.RK73@sea.plala.or.jp |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-sql |
On Sat, 4 May 2002 19:34:03 +0200 (CEST)
Jakub Ouhrabka <jouh8664(at)ss1000(dot)ms(dot)mff(dot)cuni(dot)cz> wrote:
> > Basically, no. (You might be able to do it with the help
> > of a user-defined function though).
I also think so.
> yesterday when I faced this problem (which can be solved perfectly with
> the outer join) I wasn't able to remember the solution... If there is
> any... Just out of curiosity...
I wouldn't think that that can be always solved. Whether it can be or not
depends on the elements of "day" column. But until its aggregation
will lack two successive numbers or more, the following query is useful,
I guess.
CREATE VIEW v_table1 AS
SELECT tt.day , COUNT(tt.data) AS data
FROM (SELECT t.day, t.data FROM table1 AS t
UNION ALL
SELECT 1, NULL -- indispensable if there's no row of day=1.
)AS tt
GROUP BY tt.day
;
SELECT t0.day, t0.data
FROM v_table1 AS t0
UNION
SELECT t1.day - 1 , 0
FROM v_table1 AS t1, v_table1 AS t2
WHERE t1.day > t2.day
GROUP BY t1.day
HAVING t1.day > MAX(t2.day) + 1
;
In addition, until its aggregation will lack THREE ones or more, ...
SELECT t0.day, t0.data
FROM v_table1 AS t0
UNION
SELECT t1.day - 1, 0
FROM ...
UNION
SELECT t3.day - 2, 0
FROM ...
Regards,
Masaru Sugawara
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2002-05-05 06:01:40 | Re: More long-string woes |
Previous Message | sharmad | 2002-05-04 23:31:02 | INserting images in postgres |