Is it possible to update field which is not null in phoenix HBase ?
For example in table with fields id (not null ), name (not null) and number.
When I write query
Upsert into table t_table (id,name,number) values (1,name1,2);
If I have record with id = 1 and name = name, when I execute this query it will create another record in database with same id = 1, name = name1 and number = 2.
Is there any way to just update this field name without duplicating data?