반응형
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 | 31 |
Tags
- google apps script
- string
- SQL
- Apache
- Kotlin
- Github
- Tkinter
- Google Excel
- c#
- hive
- Excel
- Redshift
- Java
- django
- GIT
- Mac
- PostgreSQL
- PANDAS
- Python
- numpy
- gas
- list
- 파이썬
- dataframe
- array
- math
- PySpark
- matplotlib
- Google Spreadsheet
Archives
- Today
- Total
달나라 노트
Hive : alter table ~ drop partition, partition drop, partition 지우기, partition 삭제 본문
SQL/Apache Hive
Hive : alter table ~ drop partition, partition drop, partition 지우기, partition 삭제
CosmosProject 2024. 8. 22. 19:38728x90
반응형
Hive에서 partition을 없애는 방법은 alter table을 이용하는 것입니다.
alter table test_schema.test_table
drop if exists partition (
dt >= 20240601,
dt <= 20240610
)
;
위 query는 dt 컬럼을 partition으로 가지고 있는 test_schema.test_table 테이블에서 특정 값을 가진 partition을 없애는 쿼리입니다.
drop if exists partition을 보면
if exists를 적을 경우 drop 할 partition이 보이지 않는다면 별도로 drop하지 않고 지나갑니다.
dt >= 20240601,
dt <= 20240610
조건을 보면 위처럼 되어있기 때문에
dt 컬럼의 값이 20240601 이상이고, dt 컬럼의 값이 20240610 이하인 partition을 삭제하는 것입니다.
728x90
반응형
'SQL > Apache Hive' 카테고리의 다른 글
Hive : IllegalArgumentException Size requested for unknown type: java.util.Collection (0) | 2024.08.22 |
---|---|
Hive : Partition table 만들기, partition에 insert하기 (0) | 2024.08.22 |
Hive : show create schema (schema information) (0) | 2024.08.06 |
Hive : show create table (table 정보 보기, table column list, table information) (0) | 2024.08.06 |
Hive : percentile (백분률 구하기, 백분위 구하기) / 백분위로 중간값(median) 구하기 (0) | 2023.11.28 |
Comments