|
|
|
|
|
by sergeykish
2078 days ago
|
|
> The following table lists aggregate functions: > count() Number of entries in column > max() Maximum value in column > The by clause causes the function to return a set of results, as opposed to a single result. One result is returned for each grouping specified by the by clause. Think of by as meaning "for each." I assume it evaluates like retrieving set and scalar. a | b
--------------
set 1 | scalar
set 2 | scalar
[1] http://docs.huihoo.com/ingres/9.3/QUELRef.pdf |
|