ClickHouse/docs/fa/data_types/int_uint.md
BayoNet 85334a2836 Preparations for persian documentation publication (#3045)
* Preparations for publication of persian docs.

* Fix for language direction in data_types
2018-09-06 13:22:06 +03:00

22 lines
470 B
Markdown

<div dir="rtl" markdown="1">
# UInt8, UInt16, UInt32, UInt64, Int8, Int16, Int32, Int64
اعداد با طول مشخص (Fixed-length) با یا بدون sign
## محدوده ی 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]
</div>