ClickHouse/docs/ja/sql-reference/data-types/int-uint.md
Ivan Blinkov d91c97d15d
[docs] replace underscores with hyphens (#10606)
* Replace underscores with hyphens

* remove temporary code

* fix style check

* fix collapse
2020-04-30 21:19:18 +03:00

793 B

machine_translated machine_translated_rev toc_priority toc_title
true d734a8e46d 40 UInt8、UInt16、UInt32、UInt64、Int8、Int16、Int32、Int64

UInt8、UInt16、UInt32、UInt64、Int8、Int16、Int32、Int64

符号の有無にかかわらず、固定長の整数。

Intの範囲

  • Int8-[-128:127]
  • Int16-[-32768:32767]
  • Int32-[-2147483648:2147483647]
  • Int64-[-9223372036854775808:9223372036854775807]

Uint範囲

  • UInt8-[0:255]
  • UInt16-[0:65535]]
  • UInt32-[0:4294967295]
  • UInt64-[0:18446744073709551615]

元の記事