Re: Hidden Select - Mailing list pgsql-sql

From Luis Sousa
Subject Re: Hidden Select
Date
Msg-id 3B24F179.F2695957@ualg.pt
Whole thread Raw
In response to Re: Hidden Select  (Peter Eisentraut <peter_e@gmx.net>)
Responses Re: Hidden Select
List pgsql-sql
Suposing your example:

Now i want to do a query to the view like this:

SELECT * FROM C WHERE id=1;

I whant to chose the id, but that id isn't in my select list !!!?????

I hope you understand what i mean



Best regards

Luis Sousa


Peter Eisentraut wrote:

> Luis Sousa writes:
>
> > I have a query that joins several table with some restrictions.
> > I want to take out those restrictions from the query and create a view
> > that does not show the fields that are used to restrict the data, but in
> > some way, i can restrict that data when i call the view.
>
> Do you mean like this?
>
> create table A (id int, content text);
> create table B (id int, stuff numeric);
> create view C as select A.content, B.stuff from A, B where A.id = B.id;
>
> --
> Peter Eisentraut   peter_e@gmx.net   http://funkturm.homeip.net/~peter



pgsql-sql by date:

Previous
From: Peter Eisentraut
Date:
Subject: Re: GRANT EXECUTE
Next
From: Alex Pilosov
Date:
Subject: Re: Table design issue....