일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Kotlin
- Excel
- Java
- Github
- Apache
- matplotlib
- GIT
- dataframe
- PostgreSQL
- string
- hive
- PySpark
- math
- django
- numpy
- google apps script
- SQL
- gas
- 파이썬
- array
- Tkinter
- c#
- list
- Mac
- Google Excel
- Redshift
- PANDAS
- Python
- Google Spreadsheet
- Today
- Total
목록Apache (16)
달나라 노트
delete from syntax delete from table_name where condition; table_name이라는 table에서 명시한 condition이 True인 행(row)들을 삭제합니다. delete from test_table where dy > 20201110; 위처럼 적게되면 test_table에 있는 dy컬럼의 데이터가 20201120보다 큰 값을 가진 행(row)을 모두 삭제하게됩니다. delete from test_table; 만약 조건을 명시하지 않는다면 해당 테이블의 모든 데이터가 지워집니다.(단, 테이블은 그대로 남아있습니다.) insert into syntax insert into table_name values (value1, value2, ...) ; inse..
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