Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在 cassandra 的表中添加其他列。但现有表不是空的。有什么方法可以简单地更新它吗?否则,将其他列添加到非空表的最佳方法是什么?提前谢谢。
在ALTER的 CQL 文档中有一个很好的例子,可以将表列添加到现有表中。以下语句会将列gravesite(类型为varchar)添加到表中addamsFamily:
gravesite
varchar
addamsFamily
ALTER TABLE addamsFamily ADD 墓地 varchar;