일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- math
- Tkinter
- GIT
- numpy
- Google Excel
- Mac
- gas
- array
- Java
- Apache
- hive
- django
- 파이썬
- Python
- Excel
- PySpark
- google apps script
- SQL
- Google Spreadsheet
- Redshift
- Github
- dataframe
- list
- c#
- Kotlin
- PANDAS
- string
- matplotlib
- PostgreSQL
- Today
- Total
목록ALTER TABLE (8)
달나라 노트
Hive에서 partition을 없애는 방법은 alter table을 이용하는 것입니다. alter table test_schema.test_tabledrop if exists partition ( dt >= 20240601, dt 위 query는 dt 컬럼을 partition으로 가지고 있는 test_schema.test_table 테이블에서 특정 값을 가진 partition을 없애는 쿼리입니다. drop if exists partition을 보면if exists를 적을 경우 drop 할 partition이 보이지 않는다면 별도로 drop하지 않고 지나갑니다. dt >= 20240601, dt 조건을 보면 위처럼 되어있기 때문에dt 컬럼의 값이 20240601 이상이고, d..
alter table ~ add ~를 이용하면 table에 column을 추가할 수 있습니다. Syntaxalter table table_name add column_name datatype 위처럼 원하는 table_name에 datatype을 가진 column_name을 추가할 수 있습니다. alter table test_schema.test_tableadd price bigint; test_schema.test_tabe이라는 table에datatype이 bigint인 price라는 column을 추가한다.라는 의미입니다.
alter table 구문을 이용해서 table에 존재하는 column을 삭제할 수 있습니다. Syntax alter table (table_name) drop column (column_name) (table_name) = 변경 사항을 적용할 table 이름입니다. (column_name) = 삭제할 column의 이름입니다. create table test_schema.test_table ( col1 bigint, col2 varchar(60), col3 date, col4 timestamp ) ; 테스트를 위해 위처럼 test_schema.test_table을 생성합시다. column은 col1, col2, col3, col4 총 4개가 존재합니다. alter table test_schema.tes..
alter table 구문을 이용해서 table에 새로운 컬럼을 추가해봅시다. Syntax alter table (table_name) add (column_name) (data_type) (table_name) = 변경 사항을 적용할 table 이름입니다. (column_name) = 새롭게 추가할 column의 이름입니다. (data_type) = 새롭게 추가할 column의 data type입니다. create table test_schema.test_table ( col1 bigint, col2 varchar(60), col3 date, col4 timestamp ) ; 테스트를 위해 위처럼 test_schema.test_table을 생성합시다. column은 col1, col2, col3, co..