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

20 lines
715 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# UInt8, UInt16, UInt32, UInt64, Int8, Int16, Int32, Int64 {#uint8-uint16-uint32-uint64-int8-int16-int32-int64}
Целые числа фиксированной длины, без знака или со знаком.
## Диапазоны Int {#diapazony-int}
- Int8 - \[ -128 : 127 \]
- Int16 - \[ -32768 : 32767 \]
- Int32 - \[ -2147483648 : 2147483647 \]
- Int64 - \[ -9223372036854775808 : 9223372036854775807 \]
## Диапазоны Uint {#diapazony-uint}
- UInt8 - \[ 0 : 255 \]
- UInt16 - \[ 0 : 65535 \]
- UInt32 - \[ 0 : 4294967295 \]
- UInt64 - \[ 0 : 18446744073709551615 \]
[Оригинальная статья](https://clickhouse.tech/docs/ru/data_types/int_uint/) <!--hide-->