CQL Update Data
To update data in a table in Cassandra, the UPDATE command is used. Keywords: WHERE clause: Used to select the row to be updated. SET clause: Used to set the value. MUST clause: Used to include all the columns composing the primary key. Syntax 1: UPDATE <table_name> SET <column_name> = <new_value> <column_name> = <value>…. WHERE … Read more