dbalearner
Technical User
Can you please tell me what integer base Oracle operates. For example is this unsigned integer?
With UNSIGNED INTEGER you have a max value of 4294967295. However, if I perform the following maths, Oracle does not seem to mind!
select 4294967295 * 4294967295 from dual;
4294967295*4294967295
---------------------
1.8447E+19
Thanks
With UNSIGNED INTEGER you have a max value of 4294967295. However, if I perform the following maths, Oracle does not seem to mind!
select 4294967295 * 4294967295 from dual;
4294967295*4294967295
---------------------
1.8447E+19
Thanks