Skip to main content
Allows SELECT and INSERT queries to be performed on data that are stored on a remote MySQL server.

Syntax

Arguments

Arguments also can be passed using named collections. In this case host and port should be specified separately. This approach is recommended for production environment. Simple WHERE clauses such as =, !=, >, >=, <, <= are currently executed on the MySQL server. The rest of the conditions and the LIMIT sampling constraint are executed in ClickHouse only after the query to MySQL finishes. Supports multiple replicas that must be listed by |. For example:
or

Returned value

A table object with the same columns as the original MySQL table.
Some data types of MySQL can be mapped to different ClickHouse types - this is addressed by query-level setting mysql_datatypes_support_level
In the INSERT query to distinguish table function mysql(...) from table name with column names list, you must use keywords FUNCTION or TABLE FUNCTION. See examples below.

Examples

Table in MySQL:
Selecting data from ClickHouse:
Or using named collections:
Replacing and inserting:
Copying data from MySQL table into ClickHouse table:
Or if copying only an incremental batch from MySQL based on the max current id:
Last modified on June 19, 2026