0 votes
in Big Data | Hadoop by
How will you change the data type of a column in Hive?

1 Answer

0 votes
by

We can use Alter statement to change the data type of a column in Hive.

Command will be as follows:

ALTER TABLE tableName REPLACE COLUMNS

(columnName dataType)

 

...