Hive에서 테이블 컬럼명을 변경하는 쿼리입니다.
# 컬럼명변경
alter table [TABLE_NAME] change [OLD_COLUMN] [NEW_COLUMN] [NEW_COLUMN_TYPE]
# 컬럼명 변경과 동시에 특정 컬럼의 뒤에 위치
alter table [TABLE_NAME] change [OLD_COLUMN] [NEW_COLUMN] [NEW_COLUMN_TYPE] after [기존 특정컬럼]
반응형
'BigData > Hive' 카테고리의 다른 글
Hive 트랜잭션 설정 Update, Delete (0) | 2024.06.20 |
---|---|
hive) MetaException(message:Hive Schema version 3.1.0 does not match metastore's schema version 1.2.0 Metastore is not upgraded or corrupt) 이슈 해결 (0) | 2024.01.17 |
apache hive 엔진 tez 교체 (0) | 2023.09.08 |
Hive server, metastore 로그 (0) | 2023.09.07 |
apache tez build error 트러블슈팅 (0) | 2023.07.26 |