mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
2e1f6bc56d
* replace exit with assert in test_single_page * improve save_raw_single_page docs option * More grammar fixes * "Built from" link in new tab * fix mistype * Example of include in docs * add anchor to meeting form * Draft of translation helper * WIP on translation helper * Replace some fa docs content with machine translation * add normalize-en-markdown.sh * normalize some en markdown * normalize some en markdown * admonition support * normalize * normalize * normalize * support wide tables * normalize * normalize * normalize * normalize * normalize * normalize * normalize * normalize * normalize * normalize * normalize * normalize * normalize * lightly edited machine translation of introdpection.md * lightly edited machhine translation of lazy.md * WIP on translation utils * Normalize ru docs * Normalize other languages * some fixes * WIP on normalize/translate tools * add requirements.txt * [experimental] add es docs language as machine translated draft * remove duplicate script * Back to wider tab-stop (narrow renders not so well)
129 lines
4.1 KiB
Markdown
129 lines
4.1 KiB
Markdown
# MySQL {#mysql}
|
||
|
||
Позволяет подключаться к базам данных на удалённом MySQL сервере и выполнять запросы `INSERT` и `SELECT` для обмена данными между ClickHouse и MySQL.
|
||
|
||
Движок баз данных `MySQL` транслирует запросы при передаче на сервер MySQL, что позволяет выполнять и другие виды запросов, например `SHOW TABLES` или `SHOW CREATE TABLE`.
|
||
|
||
Не поддерживаемые виды запросов:
|
||
|
||
- `ATTACH`/`DETACH`
|
||
- `DROP`
|
||
- `RENAME`
|
||
- `CREATE TABLE`
|
||
- `ALTER`
|
||
|
||
## Создание базы данных {#sozdanie-bazy-dannykh}
|
||
|
||
``` sql
|
||
CREATE DATABASE [IF NOT EXISTS] db_name [ON CLUSTER cluster]
|
||
ENGINE = MySQL('host:port', 'database', 'user', 'password')
|
||
```
|
||
|
||
**Параметры движка**
|
||
|
||
- `host:port` — адрес сервера MySQL.
|
||
- `database` — имя базы данных на удалённом сервере.
|
||
- `user` — пользователь MySQL.
|
||
- `password` — пароль пользователя.
|
||
|
||
## Поддержка типов данных {#podderzhka-tipov-dannykh}
|
||
|
||
| MySQL | ClickHouse |
|
||
|----------------------------------|---------------------------------------------|
|
||
| UNSIGNED TINYINT | [UInt8](../data_types/int_uint.md) |
|
||
| TINYINT | [Int8](../data_types/int_uint.md) |
|
||
| UNSIGNED SMALLINT | [UInt16](../data_types/int_uint.md) |
|
||
| SMALLINT | [Int16](../data_types/int_uint.md) |
|
||
| UNSIGNED INT, UNSIGNED MEDIUMINT | [UInt32](../data_types/int_uint.md) |
|
||
| INT, MEDIUMINT | [Int32](../data_types/int_uint.md) |
|
||
| UNSIGNED BIGINT | [UInt64](../data_types/int_uint.md) |
|
||
| BIGINT | [Int64](../data_types/int_uint.md) |
|
||
| FLOAT | [Float32](../data_types/float.md) |
|
||
| DOUBLE | [Float64](../data_types/float.md) |
|
||
| DATE | [Date](../data_types/date.md) |
|
||
| DATETIME, TIMESTAMP | [DateTime](../data_types/datetime.md) |
|
||
| BINARY | [FixedString](../data_types/fixedstring.md) |
|
||
|
||
Все прочие типы данных преобразуются в [String](../data_types/string.md).
|
||
|
||
[Nullable](../data_types/nullable.md) поддержан.
|
||
|
||
## Примеры использования {#primery-ispolzovaniia}
|
||
|
||
Таблица в MySQL:
|
||
|
||
``` text
|
||
mysql> USE test;
|
||
Database changed
|
||
|
||
mysql> CREATE TABLE `mysql_table` (
|
||
-> `int_id` INT NOT NULL AUTO_INCREMENT,
|
||
-> `float` FLOAT NOT NULL,
|
||
-> PRIMARY KEY (`int_id`));
|
||
Query OK, 0 rows affected (0,09 sec)
|
||
|
||
mysql> insert into mysql_table (`int_id`, `float`) VALUES (1,2);
|
||
Query OK, 1 row affected (0,00 sec)
|
||
|
||
mysql> select * from mysql_table;
|
||
+--------+-------+
|
||
| int_id | value |
|
||
+--------+-------+
|
||
| 1 | 2 |
|
||
+--------+-------+
|
||
1 row in set (0,00 sec)
|
||
```
|
||
|
||
База данных в ClickHouse, позволяющая обмениваться данными с сервером MySQL:
|
||
|
||
``` sql
|
||
CREATE DATABASE mysql_db ENGINE = MySQL('localhost:3306', 'test', 'my_user', 'user_password')
|
||
```
|
||
|
||
``` sql
|
||
SHOW DATABASES
|
||
```
|
||
|
||
``` text
|
||
┌─name─────┐
|
||
│ default │
|
||
│ mysql_db │
|
||
│ system │
|
||
└──────────┘
|
||
```
|
||
|
||
``` sql
|
||
SHOW TABLES FROM mysql_db
|
||
```
|
||
|
||
``` text
|
||
┌─name─────────┐
|
||
│ mysql_table │
|
||
└──────────────┘
|
||
```
|
||
|
||
``` sql
|
||
SELECT * FROM mysql_db.mysql_table
|
||
```
|
||
|
||
``` text
|
||
┌─int_id─┬─value─┐
|
||
│ 1 │ 2 │
|
||
└────────┴───────┘
|
||
```
|
||
|
||
``` sql
|
||
INSERT INTO mysql_db.mysql_table VALUES (3,4)
|
||
```
|
||
|
||
``` sql
|
||
SELECT * FROM mysql_db.mysql_table
|
||
```
|
||
|
||
``` text
|
||
┌─int_id─┬─value─┐
|
||
│ 1 │ 2 │
|
||
│ 3 │ 4 │
|
||
└────────┴───────┘
|
||
```
|