mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 17:12:03 +00:00
Merge pull request #32746 from fanofxiaofeng/patch-1
name -> table_name
This commit is contained in:
commit
3cee6d37db
@ -22,7 +22,7 @@ CREATE TABLE [IF NOT EXISTS] [db.]table_name [ON CLUSTER cluster]
|
|||||||
) ENGINE = engine
|
) ENGINE = engine
|
||||||
```
|
```
|
||||||
|
|
||||||
Creates a table named `name` in the `db` database or the current database if `db` is not set, with the structure specified in brackets and the `engine` engine.
|
Creates a table named `table_name` in the `db` database or the current database if `db` is not set, with the structure specified in brackets and the `engine` engine.
|
||||||
The structure of the table is a list of column descriptions, secondary indexes and constraints . If [primary key](#primary-key) is supported by the engine, it will be indicated as parameter for the table engine.
|
The structure of the table is a list of column descriptions, secondary indexes and constraints . If [primary key](#primary-key) is supported by the engine, it will be indicated as parameter for the table engine.
|
||||||
|
|
||||||
A column description is `name type` in the simplest case. Example: `RegionID UInt32`.
|
A column description is `name type` in the simplest case. Example: `RegionID UInt32`.
|
||||||
|
Loading…
Reference in New Issue
Block a user