반응형
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 Spreadsheet
- numpy
- Mac
- gas
- Google Excel
- math
- GIT
- SQL
- list
- c#
- Java
- Redshift
- Python
- Excel
- Github
- PostgreSQL
- 파이썬
- dataframe
- PANDAS
- Kotlin
- array
- matplotlib
- django
- google apps script
- Apache
- string
- hive
- PySpark
- Tkinter
Archives
- Today
- Total
달나라 노트
Hive : drop view if exists, create temporary view (temporary view 만들고 없애기) 본문
SQL/Apache Hive
Hive : drop view if exists, create temporary view (temporary view 만들고 없애기)
CosmosProject 2021. 6. 2. 01:28728x90
반응형
drop view if exists test_temporary_table;
create temporary view test_temporary_table as
select current_date
;
select *
from test_temporary_table
;
-> 결과 : 2020-12-17
drop view if exists test_temporary_table;
drop view view_name은 어떤 이름의 view를 삭제하는데 사용됩니다.
여기에 if exists라는 키워드를 붙이면 해당 view가 존재한다면 삭제하고 존재하지않는다면 그냥 넘어가게됩니다.
즉, 존재하지 않는 view를 drop하려할 때 생기는 에러를 방지할 수 있죠.
create temporary view test_temporary_table as
select current_date
;
create view view_name as select ~~~~ ;
일반적인 create view는 임시 view가 아닌 영구 view을 생성합니다.
그러나 여기에 temporary 라는 키워드를 붙이면 종료 시 알아서 삭제되는 temporary view을 생성할 수 있습니다.
728x90
반응형
'SQL > Apache Hive' 카테고리의 다른 글
Comments