PARSER ERROR

From: Frederick Klauschen <fklauschen(at)yahoo(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: PARSER ERROR
Date: 2001-09-26 20:24:03
Message-ID: 20010926202403.39030.qmail@web10108.mail.yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

The commas did not get cut off and I think I
did not make any other mistakes either.
Is it also possible that the parser does not work
properly?

Thanks, Frederick

Here is what happened again:

ERROR: parser: parse error at or near "("
when running :

> SELECT people.people_id, people.name,
> people.address,
> people_attributes.attribute_name,
> people_attributes.attribute_value
> FROM people, people_attributes,
> ( SELECT people_id, count(*) as match_count
> FROM people_attributes, search_attributes
> WHERE search_id = 31
> AND people_attributes.attribute_name =
> search_attributes.attribute_name
> AND people_attributes.attribute_value ~*
> search_attributes.attribute_value )
> matches,
> ( SELECT count(*) as attribute_count
> FROM search_attributes
> WHERE search_id = 31 ) searched
> WHERE people.people_id = people_attributes.people_id
> AND people.people_id = matches.people_id
> AND matches.match_count =
> searched.attribute_count;

Postgresql Verson 7.0.3 and 7.1.3.

__________________________________________________
Do You Yahoo!?
Get email alerts & NEW webcam video instant messaging with Yahoo! Messenger. http://im.yahoo.com

Browse pgsql-sql by date

  From Date Subject
Next Message Carl van Tast 2001-09-26 22:21:01 Re: Query does not work: parse ERROR, Re: How to enter lists into database: Problems with solution.
Previous Message Josh Berkus 2001-09-26 19:09:22 Re: Query does not work: parse ERROR, Re: How to enter lists into database: Problems with solution.