Re: Using schema

From: "Scott Marlowe" <scott(dot)marlowe(at)gmail(dot)com>
To: "Daniel Caune" <daniel(dot)caune(at)ubisoft(dot)com>
Cc: pgsql-sql(at)postgresql(dot)org
Subject: Re: Using schema
Date: 2007-12-01 03:33:06
Message-ID: dcc563d10711301933q3bfdeed0n36dc3afefca9efae@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

On Nov 30, 2007 9:00 AM, Daniel Caune <daniel(dot)caune(at)ubisoft(dot)com> wrote:

> The cool thing with this, compared to the USE statement supported by
> some other RDBMS, is that the user is not restricted to one given schema
> without explicit schema declaration:
>
> SELECT * FROM foo; -- Uses schema my_schema
> SELECT * FROM bar; -- Uses schema public
> SELECT * FROM foo, bar WHERE foo.i = bar.i; -- Uses both schemas
>
> That is damn flexible! :-)

Hehe. yeah, every time I have to use Oracle at work I feel like I'm
putting on a straight jacket.

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message ronald tabada 2007-12-01 03:47:23 Crosstab limitation...
Previous Message Daniel Caune 2007-11-30 15:00:11 Using schema