Last active
March 26, 2025 16:45
-
-
Save ArtemAvramenko/bd64fb6f40547f915d7c3340aabe8870 to your computer and use it in GitHub Desktop.
Max integer values
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int 2 147 483 647 (2^32 / 2) - 2 billions | |
double 9 007 199 254 740 992 (2^53) - 9 quadrillions (millions of billions) | |
long 9 223 372 036 854 775 807 (2^64 / 2) - 9 quintillions (billions of billions) | |
decimal 79 228162514 264337593 543950335 (2^96) - 79 octillions (billions of billions of billions) | |
t/sql money 922 337 203 685 477 (2^63 / 1e4) - 900 trillions (millions of millions) | |
t/sql smallmoney 214 748 (2^31 / 1e4) - 200 thousands | |
t/sql numeric(38,4) 999999999..99 (1e34 - 1) - 9 decillion (millions of billions of billions of billions) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment