Greetings!
I guess you have some sort of "local" implementation for queries against the DUAL table, because I'm getting different result than in SQL*Plus.
PL/SQL Developer:
SQL*Plus:
Could you please fix it?
Thank you beforehand.
Ivan C.
I guess you have some sort of "local" implementation for queries against the DUAL table, because I'm getting different result than in SQL*Plus.
PL/SQL Developer:
Code:
SQL> select 1 from dual;
1
----------
1
SQL> select 1 from dual group by cube (1);
1
----------
1
1
SQL> select 1 from dual group by cube (1, 2);
1
----------
1
1
1
1
Code:
SQL> select 1 from dual;
1
----------
1
SQL> select 1 from dual group by cube (1);
1
----------
1
SQL> select 1 from dual group by cube (1, 2);
1
----------
1
Thank you beforehand.
Ivan C.