Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
create table precision (x number(5,2));
Table created.
insert into precision values (12345.67)
*
ERROR at line 1:
ORA-01438: value larger than specified precision allows for this column
SQL> insert into precision values (1234.56);
insert into precision values (1234.56)
*
ERROR at line 1:
ORA-01438: value larger than specified precision allows for this column
SQL> insert into precision values (123.45);
1 row created.
SQL> create table test_precision (asdf number(5,2));
Table created.
SQL> insert into test_precision values (1234.56);
insert into test_precision values (1234.56)
*
ERROR at line 1:
ORA-01438: value larger than specified precision allowed for this column
SQL> insert into test_precision values (234.567);
1 row created.
SQL> select * from test_precision;
ASDF
----------
234.57