ERROR: function expression in FROM may not refer to other relations of same query level - Mailing list pgsql-sql

From Joseph S
Subject ERROR: function expression in FROM may not refer to other relations of same query level
Date
Msg-id h33got$17dc$1@news.hub.org
Whole thread Raw
Responses Re: ERROR: function expression in FROM may not refer to other relations of same query level
List pgsql-sql
I've seen this asked in the archives, but there was never any answer.

Supposed I have this table:

create temp table tempa (ids int[]);
insert into tempa SELECT ARRAY[1 , 2, 3];

Now how do I get output from that?  None of these work: (xunnest is my 
version of unnest since I'm using 8.2.x)


select * FROM xunnest(tempa.ids);

SELECT * FROM (select * FROM xunnest(tempa.ids) AS aa) AS ab, tempa;

SELECT * FROM ( select * FROM xunnest(ta.ids) AS aa) AS ab, tempa ta;

SELECT * FROM tempa ta, ( select * FROM xunnest(ta.ids) AS aa) AS ab;


pgsql-sql by date:

Previous
From: Rob Sargent
Date:
Subject: Moving text columns, when it actually is large
Next
From: Tom Lane
Date:
Subject: Re: ERROR: function expression in FROM may not refer to other relations of same query level