vote up 0 vote down star

I'm trying to do a subselect in pgsql aka postgresql and the example I found doesn't work:

SELECT id FROM (SELECT * FROM table);

flag
What do you mean by "doesn't work"? Is there an error message or what? – Tony Andrews Nov 6 '08 at 15:05

2 Answers

vote up 2 vote down check

I just needed to add an AS for the subselect, like so:

SELECT id FROM (SELECT * FROM table) AS table;

link|flag
vote up 0 vote down

I think you need something like:

SELECT * FROM table WHERE id IN (SELECT id FROM table2);

I don't understand what your non-working subquery is attempting to do, it seems like you could just say SELECT id FROM table because presently its not valid SQL92 syntax.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.