Re: [SQL] Unable to read from a view

From: jwieck(at)debis(dot)com (Jan Wieck)
To: holston(at)itd(dot)nrl(dot)navy(dot)mil (Gregory Holston)
Cc: pgsql-sql(at)hub(dot)org
Subject: Re: [SQL] Unable to read from a view
Date: 1999-02-24 22:01:38
Message-ID: m10FmN9-000EBPC@orion.SAPserv.Hamburg.dsh.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

>
>
> Hi all,
>
> I just created a view and have been unable to read from it. I am
> Apache/1.3.1 (Unix) PHP/3.0.3 and Postgres 6.4. When I tried to do a
> select it gives the following error message:
>
> real=> select * from pubsearch;
> ERROR: nodeRead: Bad type 0
>
> I created the view with the following select statment:
>
> select distinct users.firstname, users.lastname, publication.title,
^^^^^^^^

DISTINCT isn't supported in view definitions. You can SELECT
from view's distinct, but you cannot define them to be. Nor
could you define views with group by and order by.

Jan

--

#======================================================================#
# It's easier to get forgiveness for being wrong than for being right. #
# Let's break this rule - forgive me. #
#======================================== jwieck(at)debis(dot)com (Jan Wieck) #

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Gregory Holston 1999-02-24 22:03:18 Re: [SQL] Unable to read from a view
Previous Message Gregory Holston 1999-02-24 19:36:47 Unable to read from a view