반응형
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
- Kotlin
- Excel
- math
- GIT
- numpy
- Apache
- SQL
- Google Spreadsheet
- PANDAS
- Java
- Github
- list
- string
- Python
- Redshift
- hive
- google apps script
- array
- gas
- Google Excel
- PySpark
- PostgreSQL
- django
- Tkinter
- Mac
- matplotlib
- c#
- dataframe
- 파이썬
Archives
- Today
- Total
달나라 노트
Hive : drop table if exists, create temporary table (temporary table 만들고 없애기) 본문
SQL/Apache Hive
Hive : drop table if exists, create temporary table (temporary table 만들고 없애기)
CosmosProject 2020. 12. 17. 01:29728x90
반응형
drop table if exists test_temporary_table;
create temporary table test_temporary_table as
select current_date
;
select *
from test_temporary_table
;
-> 결과 : 2020-12-17
drop table if exists test_temporary_table;
drop table table_name은 어떤 이름의 테이블을 삭제하는데 사용됩니다.
여기에 if exists라는 키워드를 붙이면 해당 테이블이 존재한다면 삭제하고 존재하지않는다면 그냥 넘어가게됩니다.
즉, 존재하지 않는 테이블을 drop하려할 때 생기는 에러를 방지할 수 있죠.
create temporary table test_temporary_table as
select current_date
;
create table table_name as select ~~~~ ;
일반적인 create table은 임시테이블이 아닌 영구 테이블을 생성합니다.
그러나 여기에 temporary 라는 키워드를 붙이면 종료 시 알아서 삭제되는 temporary table을 생성할 수 있습니다.
temporary table은 따로 schema 이름을 테이블 앞에 붙이지 않습니다.
728x90
반응형
'SQL > Apache Hive' 카테고리의 다른 글
Hive : delete, insert, update (테이블의 데이터 삭제, 삽입, 변경) (0) | 2020.12.17 |
---|---|
Hive : grant (table 권한 부여) (0) | 2020.12.17 |
Hive : isnull, isnotnull (null값 테스트) (0) | 2020.12.17 |
Hive : nullif (특정 값일 때 null값을 반환) (0) | 2020.12.17 |
Hive : nvl, coalesce (여러 값 중 null이 아닌 값 추출하기) (0) | 2020.12.17 |
Comments