我有一个数字列的数据在一个表,这是由18000关闭,因为一个错误。所有的数据都需要添加18000个。clickhouse是怎么做到的?我需要这样的东西,但不知道怎么做。
update table mytable set col1 = col1 + 18000;
ar7v8xwq1#
alter table mytable update col1 = col1 + 18000 where 1;
然后检查系统表。alter是异步的,所以您需要等待突变的结束。https://www.altinity.com/blog/2018/10/16/updates-in-clickhouse
1条答案
按热度按时间ar7v8xwq1#
然后检查系统表。
alter是异步的,所以您需要等待突变的结束。
https://www.altinity.com/blog/2018/10/16/updates-in-clickhouse