How to set string value to null in cassandra? For example, I have a table like this:
CREATE TABLE instruments ( code text, ric text, primary key (code) )
if I want the element to have a specific ric :
update instruments set ric='test' where code='code';
But what about installing ric in None ?
source share