반응형
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
- hive
- list
- gas
- Apache
- Java
- matplotlib
- numpy
- PostgreSQL
- 파이썬
- PySpark
- Google Excel
- Tkinter
- SQL
- Excel
- Github
- Redshift
- math
- Google Spreadsheet
- GIT
- array
- Mac
- Kotlin
- dataframe
- string
- django
- PANDAS
- Python
- c#
Archives
- Today
- Total
달나라 노트
Hive : isnull, isnotnull (null값 테스트) 본문
728x90
반응형
isnull(value)
isnotnull(value)
isnull 함수는 value가 null이면 True를, value가 null이 아니면 False를 반환합니다.
isnotnull 함수는 value가 null이면 False를, value가 null이 아니면 True를 반환합니다.
select isnull(null);
-> 결과 : True
select isnull('abc');
-> 결과 : False
select isnotnull(null);
-> 결과 : False
select isnotnull('abc');
-> 결과 : True
728x90
반응형
'SQL > Apache Hive' 카테고리의 다른 글
Hive : grant (table 권한 부여) (0) | 2020.12.17 |
---|---|
Hive : drop table if exists, create temporary table (temporary table 만들고 없애기) (0) | 2020.12.17 |
Hive : nullif (특정 값일 때 null값을 반환) (0) | 2020.12.17 |
Hive : nvl, coalesce (여러 값 중 null이 아닌 값 추출하기) (0) | 2020.12.17 |
Hive : date_format() (날짜 format 변경) (0) | 2020.12.17 |
Comments