开发者社区 问答 正文

Hologres中创建内部表的方法有什么?

Hologres中创建内部表的方法有什么?

展开
收起
游客k7rjnht6hbtk6 2021-12-09 16:17:40 425 分享 版权
1 条回答
写回答
取消 提交回答
  • begin;
    create table [if not exists] [schema_name.]table_name(
    	id bigint primary key,
        b text,
        ds text,
    )
    partition by list(ds);
    commit;
    
    
    2021-12-09 16:18:12
    赞同 展开评论