简体   繁体   中英

How to synchronize data from clickhouse to mysql?

I have created a materialized view, I can execute sql to get some result through clickhouse-client , but how can I save the result data to another mysql database?

Consider usingMySQL Database engine :

CREATE DATABASE db 
ENGINE = MySQL('server:3306', 'database', 'user', 'password')

INSERT INTO db.table VALUES (3,4)

See more info here: Altinity MySQL&CH .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM