INTEGER data type INTEGER provides 4 bytes of storage for integer values. INTEGER data type Syntax { INTEGER | INT }
Corresponding compile-time Java type

java.lang.Integer

JDBC metadata type (java.sql.Types)

INTEGER

Minimum value

-2147483648 (java.lang.Integer.MIN_VALUE)

Maximum value

2147483647 (java.lang.Integer.MAX_VALUE)

When mixed with other data types in expressions, the resulting data type follows the rules shown in .

See also .

Examples 3453 425