- The SELECT attributes
are
restricted to:
- A subset of the
GROUP BY
attributes
- A set function
expression
|
- I.e.:
SELECT subset of {A, B, C, D}, setFunc1(..), setFunc2(..), ...
FROM ...
WHERE ...
GROUP BY A, B, C, D
|
In other words:
- You cannot
select an
attribute that is
not a
grouping attribute
|
|