【问题标题】:REPLACE VIEW alternative in clickhouse?在clickhouse中替换视图替代品?
【发布时间】:2020-09-20 00:22:18
【问题描述】:

clickhouse 中有 REPLACE VIEW 替代方案吗? 如果我删除视图并重新创建它,是否会因为停机而导致某些查询失败?

【问题讨论】:

    标签: clickhouse


    【解决方案1】:

    创建还是替换?

    create or replace view testv as select 1;
    create or replace view testv as select 2;
    select * from testv
    ┌─2─┐
    │ 2 │
    └───┘
    

    https://github.com/ClickHouse/ClickHouse/blob/master/docs/en/whats-new/changelog/2019.md

    ClickHouse Release 19.5.2.6, 2019-04-15
       Support for CREATE OR REPLACE VIEW. 
       Allow to create a view or set a new definition in a 
       single statement. #4654 (Boris Granveaud)
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 2019-05-14
      • 2018-03-11
      • 1970-01-01
      • 1970-01-01
      • 2010-11-02
      • 1970-01-01
      • 2017-08-03
      • 1970-01-01
      相关资源
      最近更新 更多