【Gbase】建表时候hash分布列的制定方式(DISTRIBUTED BY column_name)

建立hash分布列的好处:
加快数据的查找速度。
hash分布列的使用注意事项:
通常是等值查询的列,并且使用的频率很高,且不被更改的列,通常为int类型或者字符串类型。group by后面尽量也使用hash分布列

create table test(age int , bal int) distributed by ('bal');
上一篇:报错 org.springframework.dao.DataIntegrityViolationException: Error attempting to get column


下一篇:SQL关键词:Union使用