建立hash分布列的好处:
加快数据的查找速度。
hash分布列的使用注意事项:
通常是等值查询的列,并且使用的频率很高,且不被更改的列,通常为int类型或者字符串类型。group by后面尽量也使用hash分布列
create table test(age int , bal int) distributed by ('bal');
标签:hash,name,column,int,分布,使用,建表,bal
来源: https://blog.csdn.net/weixin_41498246/article/details/121539539