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);
|
|
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); |
|||
|
|
|
I just needed to add an AS for the subselect, like so: SELECT id FROM (SELECT * FROM table) AS table; |
||
|
|
|
|
I think you need something like:
I don't understand what your non-working subquery is attempting to do, it seems like you could just say |
||
|
|