일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- string
- 파이썬
- c#
- google apps script
- Python
- PANDAS
- Java
- dataframe
- Google Excel
- SQL
- django
- Apache
- PySpark
- Kotlin
- matplotlib
- Github
- PostgreSQL
- list
- Google Spreadsheet
- math
- Mac
- GIT
- hive
- Tkinter
- Redshift
- numpy
- Excel
- array
- gas
- Today
- Total
목록SQL (115)
달나라 노트
grant select on table_name to user user_or_group; table_name이라는 table에 대한 select 권한을 user_or_group에 부여한다.
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_te..
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
nullif(value1, value2) nullif 함수는 value1과 value2가 동일하면 null을 반환하며 value1과 value2가 다르면 value1을 반환합니다. select nullif(1, 1); -> 결과 : null select nullif(1, 2); -> 결과 : 1 select nullif('abc', 'abc'); -> 결과 : null select nullif('a', 'abc'); -> 결과 : a nullif는 0으로 나누기 에러를 해결하는데 사용할 수 있습니다. select 10 / 0; 위처럼 0으로 숫자를 나누게 되면 에러가 발생합니다. select 10 / nullif(0, 0); -> 결과 : null 그러나 위처럼 분모에 nullif를 이용해 해당 값이 0..