存储格式介绍
一、格式
在Hologres中支持行存、列存和行列共存三种存储格式,不同的存储格式适用于不同的场景。在建表时通过设置orientation属性指定表的存储格式,语法如下:
-- 2.1版本起支持
CREATE TABLE <table_name> (...) WITH (orientation = '[column | row | row,column]');
-- 所有版本支持
BEGIN;
CREATE TABLE <table_name> (...);
call set_table_property('<table_name>', 'orientation', '[column | row | row,column]');
COMMIT;
注意事项:
- orientation:指定了数据库表在Hologres
本文转载自: https://blog.csdn.net/xiaoweite1/article/details/142630183
版权归原作者 Lansonli 所有, 如有侵权,请联系我们删除。
版权归原作者 Lansonli 所有, 如有侵权,请联系我们删除。