Can i alter a column from non-frozen collection data type to frozen collection data type
CREATE TABLE vinoth.employee ( emp_id int PRIMARY KEY, emp_city text, emp_name text, emp_sal int, emp_details map<text, float> )
This below statement is not working, Is there any other way to do this?
ALTER TABLE employee ALTER emp_details TYPE frozen<map<text, float>>;