I am just wanted to say that
SQL*Plus: Release 10.2.0.1.0 - Production on Mon Feb 8 13:17:38
Copyright (c) 1982, 2005, Oracle. All rights reserved.
SQL> conn halim@test107
Enter password:
Connected.
SQL>
SQL>
SQL> select (1 / 1 ) * 100 from dual
2 /
(1/1)*100
----------
100
SQL> select (0 / 1 ) * 100 from dual
2 /
(0/1)*100
----------
0
SQL> select (1 / 0 ) * 100 from dual
2 /
select (1 / 0 ) * 100 from dual
*
ERROR at line 1:
ORA-01476: divisor is equal to zero
SQL>
Regards
Halim
[Updated on: Mon, 08 February 2010 01:27]
Report message to a moderator