You can replace the column name and the datatype using the ALTER command. Refer to the command below:
hive> ALTER TABLE <tablename> REPLACE COLUMNS (<old column name> INT, <new column name> STRING);
This command will only change the schema of the table i.e., it will change the column name and the datatype but will not affect the data stored in the column.