ClickHouse/docs/fr/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

763 B

machine_translated machine_translated_rev toc_priority toc_title
true f865c9653f 40 UInt8, UInt16, UInt32, UInt64, Int8, Int16, Int32, Int64

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

Entiers de longueur fixe, avec ou sans signe.

Plages Int

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

Plages Uint

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

Article Original