R Rahul P Member² May 17, 2016 #1 Eg: SELECT SUM(COUNT(*)) over(ORDER BY case when 'X' = 'X' then null else dbms_random.value end) FROM dual; Does not beautify. But this does. SELECT SUM(COUNT(*)) over(ORDER BY dbms_random.value) FROM dual;
Eg: SELECT SUM(COUNT(*)) over(ORDER BY case when 'X' = 'X' then null else dbms_random.value end) FROM dual; Does not beautify. But this does. SELECT SUM(COUNT(*)) over(ORDER BY dbms_random.value) FROM dual;
Marco Kalter Administrator Staff member May 18, 2016 #1 The PL/SQL Beautifier currently does not support analytical functions. This is on the list of enhancement requests.
The PL/SQL Beautifier currently does not support analytical functions. This is on the list of enhancement requests.