Does SQL standard allows whitespace between function names and parenthesis
Posted
by goran
on Stack Overflow
See other posts from Stack Overflow
or by goran
Published on 2010-03-23T16:25:25Z
Indexed on
2010/03/23
16:43 UTC
Read the original article
Hit count: 333
Checking few RDBMS I find that things like
SELECT COUNT (a), SUM (b)
FROM TABLE
are allowed (notice space between aggregate functions and parenthesis).
Could anyone provide a pointer to SQL standard itself where this is defined (any version will do)?
© Stack Overflow or respective owner