diff --git a/ydb/docs/en/core/yql/reference/yql-core/types/_includes/datatypes_primitive_number.md b/ydb/docs/en/core/yql/reference/yql-core/types/_includes/datatypes_primitive_number.md
index 29652eb73710..c4f210fd492d 100644
--- a/ydb/docs/en/core/yql/reference/yql-core/types/_includes/datatypes_primitive_number.md
+++ b/ydb/docs/en/core/yql/reference/yql-core/types/_includes/datatypes_primitive_number.md
@@ -1,17 +1,17 @@
| Type | Description | Notes |
| ----- | ----- | ----- |
| `Bool ` | Boolean value. |
-| `Int8` | A signed integer.
Acceptable values: from -27 to 27–1. | Not supported for table columns |
-| `Int16` | A signed integer.
Acceptable values: from –215 to 215–1. | Not supported for table columns |
+| `Int8` | A signed integer.
Acceptable values: from -27 to 27–1. |
+| `Int16` | A signed integer.
Acceptable values: from –215 to 215–1. |
| `Int32` | A signed integer.
Acceptable values: from –231 to 231–1. |
| `Int64` | A signed integer.
Acceptable values: from –263 to 263–1. |
| `Uint8` | An unsigned integer.
Acceptable values: from 0 to 28–1. |
-| `Uint16` | An unsigned integer.
Acceptable values: from 0 to 216–1. | Not supported for table columns |
+| `Uint16` | An unsigned integer.
Acceptable values: from 0 to 216–1. |
| `Uint32` | An unsigned integer.
Acceptable values: from 0 to 232–1. |
| `Uint64` | An unsigned integer.
Acceptable values: from 0 to 264–1. |
| `Float` | A real number with variable precision, 4 bytes in size. | {% if feature_map_tables %}Can't be used in the primary key{% endif %} |
| `Double` | A real number with variable precision, 8 bytes in size. | {% if feature_map_tables %}Can't be used in the primary key{% endif %} |
-| `Decimal` | A real number with the specified precision, up to 35 decimal digits | {% if feature_map_tables %}When used in table columns, precision is fixed: Decimal (22,9).{% endif %} |
+| `Decimal` | A real number with the specified precision, up to 35 decimal digits | {% if feature_map_tables %}When used in table columns, the precision is fixed: Decimal(22,9){% endif %} |
{% if feature_map_tables %}
|`DyNumber` | A binary representation of a real number with an accuracy of up to 38 digits.
Acceptable values: positive numbers from 1×10-130 up to 1×10126–1, negative numbers from -1×10126–1 to -1×10-130, and 0.
Compatible with the `Number` type in AWS DynamoDB. It's not recommended for {{ backend_name_lower }}-native applications. | |
{% endif %}
diff --git a/ydb/docs/ru/core/yql/reference/yql-core/types/_includes/datatypes_primitive_number.md b/ydb/docs/ru/core/yql/reference/yql-core/types/_includes/datatypes_primitive_number.md
index 0594c7bdcfc5..7add172c0d1e 100644
--- a/ydb/docs/ru/core/yql/reference/yql-core/types/_includes/datatypes_primitive_number.md
+++ b/ydb/docs/ru/core/yql/reference/yql-core/types/_includes/datatypes_primitive_number.md
@@ -1,12 +1,12 @@
Тип | Описание | Примечания
----- | ----- | -----
`Bool` | Логическое значение. |
-`Int8` | Целое число со знаком.
Допустимые значения: от –27 до 27–1. | Не поддержан для столбцов таблиц
-`Int16` | Целое число со знаком.
Допустимые значения: от –215 до 215–1. | Не поддержан для столбцов таблиц
+`Int8` | Целое число со знаком.
Допустимые значения: от –27 до 27–1. |
+`Int16` | Целое число со знаком.
Допустимые значения: от –215 до 215–1. |
`Int32` | Целое число со знаком.
Допустимые значения: от –231 до 231–1. |
`Int64` | Целое число со знаком.
Допустимые значения: от –263 до 263–1. |
`Uint8` | Беззнаковое целое число.
Допустимые значения: от 0 до 28–1. |
-`Uint16` | Беззнаковое целое число.
Допустимые значения: от 0 до 216–1. | Не поддержан для столбцов таблиц
+`Uint16` | Беззнаковое целое число.
Допустимые значения: от 0 до 216–1. |
`Uint32` | Беззнаковое целое число.
Допустимые значения: от 0 до 232–1. |
`Uint64` | Беззнаковое целое число.
Допустимые значения: от 0 до 264–1. |
`Float` | Вещественное число с переменной точностью размером 4 байта. | {% if feature_map_tables %}Не может быть использован в первичном ключе{% endif %}