Re: Views...

From: Richard Huxton <dev(at)archonet(dot)com>
To: "Brett W(dot) McCoy" <bmccoy(at)chapelperilous(dot)net>
Cc: Christian Marschalek <cm(at)chello(dot)at>, "[GENERAL] PostgreSQL" <pgsql-general(at)postgresql(dot)org>
Subject: Re: Views...
Date: 2001-03-25 12:14:21
Message-ID: 3ABDE11C.94B4A6CB@archonet.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

"Brett W. McCoy" wrote:
>
> Briefly, a view is a 'virtual' table -- you create a view with a select
> statement that can relate data between different tables or use a subset of
> data from a specific table. You can think of them as a 'saved query'.
> Once you create a view, you can then query them just like a normal table.
> You cannot, as of yet, update views in PostgreSQL, they are read only.

Not by default, but you can of course define your own rules to allow updating.

- Richard Huxton

In response to

Responses

  • RE: Views... at 2001-03-25 13:39:35 from Christian Marschalek

Browse pgsql-general by date

  From Date Subject
Next Message Marek Pętlicki 2001-03-25 13:09:51 Re: Vacuum VS Vacuum Analyze
Previous Message Lincoln Yeoh 2001-03-25 11:45:54 Re: Select for insert possible?