SubQueries in FROM statement

Michael <wwwadmin@wizard.ca>

From: Michael <wwwadmin@wizard.ca>
To: "pgsql-sql@postgreSQL.org" <pgsql-sql@postgreSQL.org>
Date: 1998-07-27T05:56:13Z
Lists: pgsql-sql
I see that now the use of SubQueries are allowed in certain cases, but
is there any plans in the works to sllow subqueries in the FROM
statement.. ie

SELECT count(cats)
    FROM (
            SELECT name AS cats
                FROM animals
                WHERE species='feline'
            )