I wanto update string to another string with method replace. I have been update success with MYSQL, but cassandra, I have a error. Thank for all!
This is commandline with MySQL:
update table_1
set field_1 = replace(field_1, 'hello', 'bonjour') where user_id = 9999;
@LiamNguyen, you would achieve that in Cassandra as follows:
Additional References:
p/s: I am assuming
user_idis your primary key of that Cassandra table