|
I just looked upon this documentation and reproduced it in ij...
I have this proposed changes: SELECT COUNT(*),WORK_DEPT,AVG(SALARY) FROM EMPLOYEE GROUP BY WORK_DEPT ORDER BY 3; Please provide feedback on this. I think that change is right.
I have made changes to the file trunk/src/ref/rrefselectexpression.dita.
The following lines : SELECT WORKDEPT, AVG(SALARY) FROM EMPLOYEE GROUP BY WORKDEPT ORDER BY 1 have been replaced with: SELECT COUNT(*),WORK_DEPT,AVG(SALARY) FROM EMPLOYEE GROUP BY WORK_DEPT ORDER BY 3; I build the new file with ant html and the resulting html page: rrefselectexpression.html contains the corrected code. The file newref.zip contains the corrected page. Please have a look at it. I checked three kind output of singlepage,multi page and PDF.
There were no problem and I will commit it. I committed.
Sending src/ref/rrefselectexpression.dita Transmitting file data . Committed revision 616747. This issue has no fix version, but has been checked in to trunk after the 10.3 branch was cut, and has not been merged to the 10.3 branch (before the last release).
(Some have been checked into trunk after 10.4 was cut and then merged to 10.4). |
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
-- Arrange the result table in ascending order by average departmental salary.
1 is for WORKDEPT and not AVG(SALARY).