Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
shnikd committed Apr 2, 2024
1 parent 44cd26a commit eb5b5ee
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ydb/docs/en/core/postgresql/statements/create_table.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ The `CREATE TABLE` statement is used to create an empty table in the current dat


When creating a table, you can specify:
1. **Table Type**: {% include [_includes/temp_table_description.md](../../_includes/temp_table_description.md) %}
1. **Table Type**: {% include [temp-table-description.md](../../_includes/temp-table-description.md) %}
2. **Table Name**: `<table name>` – you can use English letters in lowercase, numbers, underscores and dollar signs ($). For example, the table name "People" will be stored as "people". For more information, see [Identifiers and Key Words](https://www.postgresql.org/docs/current/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS).
3. **Column Name**: `<column name>` – the same naming rules apply as for table names.
4. **Data Type**: `<column data type>`[standard PostgreSQL data types](https://www.postgresql.org/docs/14/datatype.html) are specified.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ CREATE TEMPORARY TABLE table_name (
);
```

{% include [_includes/temp_table_description.md](../../../../../_includes/temp_table_description.md) %}
{% include [temp-table-description.md](../../../../../_includes/temp-table-description.md) %}

{% endif %}

Expand Down
2 changes: 1 addition & 1 deletion ydb/docs/ru/core/postgresql/statements/create_table.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ CREATE [TEMPORARY | TEMP] TABLE <table name> (
);
```
При создании таблицы можно задать:
1. **Тип таблицы**: {% include [_includes/temp_table_description.md](../../_includes/temp_table_description.md) %}
1. **Тип таблицы**: {% include [temp-table-description.md](../../_includes/temp-table-description.md) %}
2. **Имя таблицы**: `<table name>` – можно использовать английские буквы в нижнем регистре, цифры, нижнее подчёркивание и знак доллара ($). Например, название таблицы "People" будет сохранено как "people";
3. **Имя столбца/колонки**: <column name> – действую такие же правила нейминга как и для имен таблиц;
4. **Тип данных**: <column data type> – указываются [стандартные типы](https://www.postgresql.org/docs/current/datatype.html) данных PostgreSQL;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ CREATE TEMPORARY TABLE table_name (
...
);
```
{% include [_includes/temp_table_description.md](../../../../../_includes/temp_table_description.md) %}
{% include [temp-table-description.md](../../../../../_includes/temp-table-description.md) %}

{% endif %}

Expand Down

0 comments on commit eb5b5ee

Please sign in to comment.