250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Multi Factor Authentication
- CCA131
- 데이터베이스
- AWS자격증
- hive
- 코딩테스트
- IAM
- sql자격증
- EC2
- MFA
- 빅데이터
- 리눅스
- RDBMS
- hadoop
- SQL
- CLF-01
- CCAAdministrator
- 클라우데라자격증
- 클라우드컴퓨팅
- 프로그래머스
- 쉘스크립트
- Identity and access management
- mysql
- 하둡
- AWSCloudPractitioner
- SQLD
- 파이썬
- 빅데이터실무자격증
- programmers
- 클라우드자격증
Archives
- Today
- Total
Sherry IT Blog
알아두면 유용한 Hive alter문 본문
728x90
반응형
-- 1.컬럼변경
alter table 테이블명 change [old_column] [new_column] new_column_type
-- 2.컬럼추가
alter table 테이블명 add columns([new_column] [new_column_type] comment [comment_name])
--(comment 생략가능)
-- 3. 컬럼삭제
alter table 컬럼명 replace colums(남겨둘컬럼 컬럼타입,남겨둘컬럼2 컬럼타입2 .......)
(컬럼갯수가 많다면 create 가 더 효율적일 수 있음)
-- 4.테이블명 변경
alter table 테이블명 rename to 새테이블명
-- 5.테이블 코멘트 추가하기
alter table 테이블명 set tblproperties('comment' = '코멘트명')
-- 6.테이블 파티션 타입 변경
alter table 테이블명 partition column (파티션명 파티션타입)
--ex) alter table test.test partition column( year string, month string)
728x90
반응형
'BIgData' 카테고리의 다른 글
하둡의 질의표준 hive 하이브 정의 및 역할정리 (0) | 2021.02.08 |
---|---|
hive insert문 셋팅값 & insert into 와 insert overwrite 차이 (0) | 2021.02.05 |
HDFS 데이터 이관 후 hive에서 테이블 조회 안될경우 해결 명령어 (0) | 2021.02.02 |
CCA Administrator Exam (CCA131) 합격! / 클라우데라 빅데이터 개발자 관련 자격증 (1) | 2021.01.28 |
CCA Administrator Exam (CCA131) 자격증 시험 후기 (2) | 2021.01.27 |
Comments