Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 Oracle 中存储一个 CRC 签名的 Int32 值。我应该使用什么精度?
由于 a 的最大值signed int为 2,147,483,647,因此您将使用 10 的精度。
signed int
32 位可以存储 2^32 或略多于 4,000,000,000 个不同的数字,因此您需要一个NUMBER(10, 0).
NUMBER(10, 0)