What's the length of SQL integer ?
-
32 bit
-
64 bit
-
18 bit
-
None of the above
A
Correct answer
Explanation
Standard SQL INTEGER is typically implemented as a 32-bit signed integer in most database systems including Oracle. This provides a range of approximately -2 billion to +2 billion. While some systems support 64-bit integers (BIGINT), the standard INTEGER type is conventionally 32-bit.