聚合表结构重建

有一个聚合类型表,有字段id,name,info,timestamp,其中前缀索引为id和name;
现在想要把表修改为id,name,date,info,timestamp,其中前缀索引为id,name,date,其中date的格式为日期,值是根据timestamp来获取的;
请问这样的表修改,有什么好的建议不?

聚合模型增加key列的需求,alter table增加即可,参考:https://docs.starrocks.io/zh-cn/latest/sql-reference/sql-statements/data-definition/ALTER%20TABLE