简体   繁体   中英

Aws Athena - Rename column name

I am trying to change a column name in an AWS Athena table. From old_name to new_name .

Normal DDL commands does not affect the table (They cannot be executed).

Is It possible to change a column name without deleting and re-creating the table from scratch ?

I was mistaken, Athena uses HIVE DDL syntax so the correct command is : ALTER TABLE %%table-name%% CHANGE %%old-column-name%% %%new-column-name%%<string>;

I based my answer on a hive related question .

您可以在此处找到有关受支持和不受支持的DDL的更多信息。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM