Search Postgresql Archives

Re: error with Subquery

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



On fös, 2006-12-08 at 13:58 +0300, Max Bondaruk wrote:
> Hi!
> 
> error with Subquery alias...

> SELECT *,(SELECT COUNT(id)
> FROM articles a WHERE a.lft < articles.lft AND a.rgt > articles.rgt) AS depth
> FROM articles
> where (depth < 3)
> ORDER BY lft

you cannot refer to depth in the where because it is not
an attribute of the table in the FROM list.

it may be more obvious if we replace the subquery with a constant:
SELECT *, 999 as depth
  FROM articles
  WHERE (depth < 3) 

however you should be able to do
SELECT * FROM
  ( SELECT *,
           (SELECT COUNT(id) FROM articles a 
              WHERE a.lft < articles.lft 
              AND a.rgt > articles.rgt
           ) AS depth
    FROM articles
  ) AS foo
WHERE  (depth < 3)
ORDER BY lft

gnari




[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Postgresql Jobs]     [Postgresql Admin]     [Postgresql Performance]     [Linux Clusters]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]
  Powered by Linux