Tom Lane wrote:
> Bruce Momjian <[EMAIL PROTECTED]> writes:
> > What is COUNT('x') supposed to return?  1?  Is that legal SQL?
>
> Why not?

Because there is nothing to count.

In general,

SELECT count(expr) FROM table1;

counts the number of rows in table1 where expr evaluates to not null.  
If table1 is not specified, that rule no longer holds.  At best you 
could assume that table1 is empty and return 0.  But a result of 1 I 
cannot see justified.


---------------------------(end of broadcast)---------------------------
TIP 5: Have you checked our extensive FAQ?

               http://www.postgresql.org/docs/faqs/FAQ.html

Reply via email to