Updating a row
The syntax for updating one or more rows using Impala is shown below:
UPDATE my_first_table SET name="bob" where id = 3;
You cannot change or null the primary key value.
The syntax for updating one or more rows using Impala is shown below:
UPDATE my_first_table SET name="bob" where id = 3;