Hi
I have a developer here who needs to be able to just take ie max 2 rows pr. aggregate in this look-alike code
SELECT XMLElement("Department", XMLAttributes(deptno AS "deptno"),
XMLAgg(XMLElement("Employee", e.ename)))
AS "Dept_list"
FROM scott.emp e
GROUP BY e.deptno;
Can you give me a hint?
regards
Mette