I have a table with multiple columns. Now I want to add another column which should have values like "CTO1101"+row_id row_id is the existing column in table.
using below 2 commands is giving error.
alter table d_study add columns(cto_id string);
update d_study
set cto_id = "CTO1101" + row_id;