Like SQL Cassandra also use the UPDATE command to update data of a Cassandra table.
Syntax:
UPDATE table_name
SET
column1 = new_value_1,
column2 = new_value_2,
....
WHERE condition;
UPDATE employees
SET
city = 'Gazipur',
salary = 12432
WHERE id = 3;