Re: [HACKERS] Views on aggregates - need assistence

From: Bruce Momjian <maillist(at)candle(dot)pha(dot)pa(dot)us>
To: scrappy(at)hub(dot)org (The Hermit Hacker)
Cc: jwieck(at)debis(dot)com, pgsql-hackers(at)postgreSQL(dot)org
Subject: Re: [HACKERS] Views on aggregates - need assistence
Date: 1998-02-23 20:25:48
Message-ID: 199802232025.PAA06196@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

> > can use views as part of a union:
> >
> > select oid from view1
> > union
> > select oid from view2
>
> You mean like:
>
> SQL> select * from one
> 2 ;
>
> A
> ----------
> 3
> 4
> 2
>
> SQL> create table two ( B int );
>
> Table created.
> SQL> create view v1 as select A from one union select B from two;
>
> View created.
>
> SQL> select * from v1;
>
> A
> ----------
> 1
> 2
> 3
> 4
>

Yep, we can't currently do that.

--
Bruce Momjian | 830 Blythe Avenue
maillist(at)candle(dot)pha(dot)pa(dot)us | Drexel Hill, Pennsylvania 19026
+ If your life is a hard drive, | (610) 353-9879(w)
+ Christ can be your backup. | (610) 853-3000(h)

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian 1998-02-23 20:26:47 Re: [HACKERS] Re: [COMMITTERS] 'pgsql/src/bin/initdb initdb.sh'
Previous Message The Hermit Hacker 1998-02-23 20:23:54 Re: [HACKERS] Re: [COMMITTERS] 'pgsql/src/bin/initdb initdb.sh'