Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
Description
Implement the SQL standard COLLECT aggregate function, including with the DISTINCT keyword. COLLECT creates a multiset of its arguments, for example:
SELECT deptno, COLLECT(ename) AS enames FROM emp GROUP BY deptno