Fix code wrapping for non-code part (#10129)

* Fix code wrapping for non-code part

* Fix links, fix formatting
This commit is contained in:
Mikhail f. Shiryaev 2020-04-10 12:45:25 +02:00 committed by GitHub
parent 564bec176e
commit 91a33e1eec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,23 +16,17 @@ CREATE DATABASE [IF NOT EXISTS] db_name [ON CLUSTER cluster] [ENGINE = engine(..
### Clauses {#clauses}
- `IF NOT EXISTS`
If the `db_name` database already exists, then ClickHouse doesn't create a new database and:
- Doesn't throw an exception if clause is specified.
- Throws an exception if clause isn't specified.
If the `db_name` database already exists, then ClickHouse doesn't create a new database and:
- Doesn't throw an exception if clause is specified.
- Throws an exception if clause isn't specified.
- `ON CLUSTER`
ClickHouse creates the `db_name` database on all the servers of a specified cluster.
ClickHouse creates the `db_name` database on all the servers of a specified cluster.
- `ENGINE`
- [MySQL](../engines/database_engines/mysql.md)
Allows you to retrieve data from the remote MySQL server.
By default, ClickHouse uses its own [database engine](../engines/database_engines/index.md).
- [MySQL](../../engines/database_engines/mysql.md)
Allows you to retrieve data from the remote MySQL server.
By default, ClickHouse uses its own [database engine](../../engines/database_engines/index.md).
## CREATE TABLE {#create-table-query}