2020-04-03 13:23:32 +00:00
|
|
|
---
|
|
|
|
toc_priority: 30
|
|
|
|
toc_title: MySQL
|
|
|
|
---
|
|
|
|
|
2020-04-07 12:25:01 +00:00
|
|
|
# MySQL {#mysql}
|
2019-07-12 12:03:33 +00:00
|
|
|
|
2020-02-03 09:44:59 +00:00
|
|
|
Allows to connect to databases on a remote MySQL server and perform `INSERT` and `SELECT` queries to exchange data between ClickHouse and MySQL.
|
2019-07-12 12:03:33 +00:00
|
|
|
|
2019-08-14 16:42:09 +00:00
|
|
|
The `MySQL` database engine translate queries to the MySQL server so you can perform operations such as `SHOW TABLES` or `SHOW CREATE TABLE`.
|
2019-07-12 12:03:33 +00:00
|
|
|
|
2019-08-14 16:42:09 +00:00
|
|
|
You cannot perform the following queries:
|
2019-07-12 12:03:33 +00:00
|
|
|
|
2020-03-21 04:11:51 +00:00
|
|
|
- `RENAME`
|
|
|
|
- `CREATE TABLE`
|
|
|
|
- `ALTER`
|
2019-07-12 12:03:33 +00:00
|
|
|
|
2020-03-20 10:10:48 +00:00
|
|
|
## Creating a Database {#creating-a-database}
|
2019-07-12 12:03:33 +00:00
|
|
|
|
|
|
|
``` sql
|
|
|
|
CREATE DATABASE [IF NOT EXISTS] db_name [ON CLUSTER cluster]
|
2020-04-07 12:25:01 +00:00
|
|
|
ENGINE = MySQL('host:port', ['database' | database], 'user', 'password')
|
2019-07-12 12:03:33 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
**Engine Parameters**
|
|
|
|
|
2020-03-21 04:11:51 +00:00
|
|
|
- `host:port` — MySQL server address.
|
|
|
|
- `database` — Remote database name.
|
|
|
|
- `user` — MySQL user.
|
|
|
|
- `password` — User password.
|
2019-07-12 12:03:33 +00:00
|
|
|
|
2020-03-22 09:14:59 +00:00
|
|
|
## Data Types Support {#data_types-support}
|
2020-03-20 10:10:48 +00:00
|
|
|
|
2020-04-03 13:23:32 +00:00
|
|
|
| MySQL | ClickHouse |
|
2020-04-30 18:19:18 +00:00
|
|
|
|----------------------------------|--------------------------------------------------------------|
|
|
|
|
| UNSIGNED TINYINT | [UInt8](../../sql-reference/data-types/int-uint.md) |
|
|
|
|
| TINYINT | [Int8](../../sql-reference/data-types/int-uint.md) |
|
|
|
|
| UNSIGNED SMALLINT | [UInt16](../../sql-reference/data-types/int-uint.md) |
|
|
|
|
| SMALLINT | [Int16](../../sql-reference/data-types/int-uint.md) |
|
|
|
|
| UNSIGNED INT, UNSIGNED MEDIUMINT | [UInt32](../../sql-reference/data-types/int-uint.md) |
|
|
|
|
| INT, MEDIUMINT | [Int32](../../sql-reference/data-types/int-uint.md) |
|
|
|
|
| UNSIGNED BIGINT | [UInt64](../../sql-reference/data-types/int-uint.md) |
|
|
|
|
| BIGINT | [Int64](../../sql-reference/data-types/int-uint.md) |
|
|
|
|
| FLOAT | [Float32](../../sql-reference/data-types/float.md) |
|
|
|
|
| DOUBLE | [Float64](../../sql-reference/data-types/float.md) |
|
|
|
|
| DATE | [Date](../../sql-reference/data-types/date.md) |
|
|
|
|
| DATETIME, TIMESTAMP | [DateTime](../../sql-reference/data-types/datetime.md) |
|
|
|
|
| BINARY | [FixedString](../../sql-reference/data-types/fixedstring.md) |
|
|
|
|
|
|
|
|
All other MySQL data types are converted into [String](../../sql-reference/data-types/string.md).
|
|
|
|
|
|
|
|
[Nullable](../../sql-reference/data-types/nullable.md) is supported.
|
|
|
|
|
2021-01-23 22:52:50 +00:00
|
|
|
## Global Variables Support {#global-variables-support}
|
|
|
|
|
|
|
|
For better compatibility you may address global variables in MySQL style, as `@@identifier`.
|
|
|
|
|
2021-01-24 08:32:59 +00:00
|
|
|
These variables are supported:
|
2021-01-23 22:52:50 +00:00
|
|
|
- `version`
|
|
|
|
- `max_allowed_packet`
|
|
|
|
|
2021-01-24 08:32:59 +00:00
|
|
|
!!! warning "Warning"
|
|
|
|
By now these variables are stubs and don't correspond to anything.
|
|
|
|
|
2021-01-23 22:52:50 +00:00
|
|
|
Example:
|
|
|
|
|
|
|
|
``` sql
|
|
|
|
SELECT @@version;
|
|
|
|
```
|
|
|
|
|
2020-04-30 18:19:18 +00:00
|
|
|
## Examples of Use {#examples-of-use}
|
2019-07-12 12:03:33 +00:00
|
|
|
|
|
|
|
Table in MySQL:
|
|
|
|
|
2020-03-20 10:10:48 +00:00
|
|
|
``` text
|
2019-07-12 12:03:33 +00:00
|
|
|
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;
|
2020-04-03 13:23:32 +00:00
|
|
|
+------+-----+
|
2019-07-12 12:03:33 +00:00
|
|
|
| int_id | value |
|
2020-04-03 13:23:32 +00:00
|
|
|
+------+-----+
|
2019-07-12 12:03:33 +00:00
|
|
|
| 1 | 2 |
|
2020-04-03 13:23:32 +00:00
|
|
|
+------+-----+
|
2019-07-12 12:03:33 +00:00
|
|
|
1 row in set (0,00 sec)
|
|
|
|
```
|
|
|
|
|
|
|
|
Database in ClickHouse, exchanging data with the MySQL server:
|
|
|
|
|
2020-03-20 10:10:48 +00:00
|
|
|
``` sql
|
2019-07-12 12:03:33 +00:00
|
|
|
CREATE DATABASE mysql_db ENGINE = MySQL('localhost:3306', 'test', 'my_user', 'user_password')
|
|
|
|
```
|
2020-03-20 10:10:48 +00:00
|
|
|
|
|
|
|
``` sql
|
2019-07-12 12:03:33 +00:00
|
|
|
SHOW DATABASES
|
|
|
|
```
|
2020-03-20 10:10:48 +00:00
|
|
|
|
|
|
|
``` text
|
2019-07-12 12:03:33 +00:00
|
|
|
┌─name─────┐
|
|
|
|
│ default │
|
|
|
|
│ mysql_db │
|
|
|
|
│ system │
|
|
|
|
└──────────┘
|
|
|
|
```
|
2020-03-20 10:10:48 +00:00
|
|
|
|
|
|
|
``` sql
|
2019-07-12 12:03:33 +00:00
|
|
|
SHOW TABLES FROM mysql_db
|
|
|
|
```
|
2020-03-20 10:10:48 +00:00
|
|
|
|
|
|
|
``` text
|
2019-07-12 12:03:33 +00:00
|
|
|
┌─name─────────┐
|
|
|
|
│ mysql_table │
|
|
|
|
└──────────────┘
|
|
|
|
```
|
2020-03-20 10:10:48 +00:00
|
|
|
|
|
|
|
``` sql
|
2019-07-12 12:03:33 +00:00
|
|
|
SELECT * FROM mysql_db.mysql_table
|
|
|
|
```
|
2020-03-20 10:10:48 +00:00
|
|
|
|
|
|
|
``` text
|
2019-07-12 12:03:33 +00:00
|
|
|
┌─int_id─┬─value─┐
|
|
|
|
│ 1 │ 2 │
|
|
|
|
└────────┴───────┘
|
|
|
|
```
|
2020-03-20 10:10:48 +00:00
|
|
|
|
|
|
|
``` sql
|
2019-07-12 12:03:33 +00:00
|
|
|
INSERT INTO mysql_db.mysql_table VALUES (3,4)
|
|
|
|
```
|
2020-03-20 10:10:48 +00:00
|
|
|
|
|
|
|
``` sql
|
2019-07-12 12:03:33 +00:00
|
|
|
SELECT * FROM mysql_db.mysql_table
|
|
|
|
```
|
2020-03-20 10:10:48 +00:00
|
|
|
|
|
|
|
``` text
|
2019-07-12 12:03:33 +00:00
|
|
|
┌─int_id─┬─value─┐
|
|
|
|
│ 1 │ 2 │
|
|
|
|
│ 3 │ 4 │
|
|
|
|
└────────┴───────┘
|
|
|
|
```
|
2019-08-14 16:42:09 +00:00
|
|
|
|
2020-01-30 10:34:55 +00:00
|
|
|
[Original article](https://clickhouse.tech/docs/en/database_engines/mysql/) <!--hide-->
|