Antw: Join - Mailing list pgsql-sql

From Gerhard Dieringer
Subject Antw: Join
Date
Msg-id s9b7c1a6.002@kopo001
Whole thread Raw
List pgsql-sql
>>> Craig May <craig.may@s2.enthdimension.com.au> 08.09.2000  02.59 Uhr >>>
> Hi,

> I'm having trouble with this statement, could someone help out please.

> Select g.ID From Grouping g join Entity_Grouping eg on g.ID=eg.Group_ID where
> eg.Entity_ID=1

> The error message is:

> ERROR: transfromExpr: does not know hot to transfrom node 501 (internal error)

> Craig May


> Enth Dimension
> http://www.enthdimension.com.au/ 

It's a bug in 7.0.0. You can update to 7.0.2 or use the non-ANSI-join-syntax:

Select g.ID From Grouping g, Entity_Grouping eg 
WHERE g.ID=eg.Group_ID AND eg.Entity_ID=1

Gerhard




pgsql-sql by date:

Previous
From: Kristofer Munn
Date:
Subject: Re: Join
Next
From: "Ingram, Bryan"
Date:
Subject: Foresee any problems with this? postgres-failover (long)