I have a Cassandra table:
CREATE TABLE test (
c1 text primary key,
c2 text
);
Column c2 has values like 'a', 'b', 'c', ... Now I want to change the value of c2 to 'a' for all rows. (Let's say I have ten thousand rows) What's the best way to do this in Cassandra?
In SQL, I can simply do
UPDATE test SET c2 = 'b';
But Cassandra doesn't allow it.