Anders Eklund
Member
Hi,
I have a problem in PL/SQL Developer 11.0.2.1766.
If i do this select and sort the value in the grid by using the sort button the value is sorted as text. (14.04 comes before 4.86 row 3 and 8)
If i use oracle order by the output is sorted correct.
Is there a setting for this or what am i doing wrong?
I have a problem in PL/SQL Developer 11.0.2.1766.
If i do this select and sort the value in the grid by using the sort button the value is sorted as text. (14.04 comes before 4.86 row 3 and 8)
If i use oracle order by the output is sorted correct.
Is there a setting for this or what am i doing wrong?

Code:
select sqrt(power(abs(x.val),2)+power(abs(x.val),2)) as Hyp
from (
SELECT dbms_random.value(1,10) as val
FROM DUAL
CONNECT BY ROWNUM <= 9) x
-- order by 1
Last edited: