...
In other words, it is an error that occurs when the input value exceeds the range supported by the data type.
# Example
| Code Block |
|---|
iSQL> create table test(i1 integer);
Create success.
iSQL> insert into test values(2147483648);
[ERR-21010 : Value overflow
0001 : insert into TEST values(2147483648)
^ ^
]
iSQL> insert into test values(2147483647);
1 row inserted. |
The range of integer type values is -2,147,483,647 to ~ 2,147,483,647 integer values.
...
The range of values for each data type supported by Altibase can be found in the General Reference manual at http://support.altibase.com/en/manual/ or githubGitHub: https://github.com/ALTIBASE/Documents.