일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- math
- PANDAS
- numpy
- matplotlib
- django
- Tkinter
- PostgreSQL
- PySpark
- Java
- list
- gas
- 파이썬
- string
- Mac
- c#
- Kotlin
- Python
- google apps script
- Github
- hive
- Excel
- Apache
- array
- Google Spreadsheet
- SQL
- Google Excel
- Redshift
- GIT
- dataframe
- Today
- Total
목록SQL (115)
달나라 노트
mod(a, b) mod 함수는 a를 b로 나눈 후의 나머지를 반환합니다. select mod(7, 2); -> output = 1 select mod(11, 4); -> output = 3 select mod(100, 30); -> output = 10
임시 테이블을 만드는 방법은 create temp table을 이용하면 됩니다. 근데 with 구문을 이용하여 위와 비슷한 기능을 사용할 수 있습니다. with valid_user as ( selectui.userkey from user.user_info as ui -- where 1=1 and ui.valid = 1 ), user_address as ( selecta.address_code from user.address as a -- where 1=1 and a.valid = 1 ) -- select* from order.order_list as ol -- join valid_user as vu on vu.userkey = ol.userkey join user_address as ua on ua.ad..
create table test_schema.test_table ( col1 varchar(max), col2 bigint(max), col3 varchar(max) ) ; create table은 위처럼 테이블을 생성시킬 수 있도록 합니다. 위 테이블은 col1, col2, col3라는 3개의 column을 가질 것이고, 각 컬럼에 들어갈 값들의 datatype은 순서대로 varchar(문자), bigint(정수), varchar(문자)입니다. create table if not exists test_schema.test_table ( col1 varchar(max), col2 bigint(max), col3 varchar(max) ) ; 또한 if not exists라는 옵션을 추가할 수도 있습니다...
Hive에선 collect_list, collect_set이라는 함수를 제공합니다. 이는 여러 행의 데이터를 합칠 때 사용합니다. 마치 Redshift의 listagg와 비슷한 함수라고 생각하면 되겠네요. Table name = employees department_no join_dt name 10 2020-02-01 Bero 10 2020-02-02 Alice 10 2020-02-03 Alice 20 2020-02-03 Dave 20 2020-02-02 Hella 20 2020-02-04 Alice 30 2020-02-06 Grace 30 2020-02-04 Irene 30 2020-02-05 Hella 위와 같은 table이 있다고 가정해봅시다. selectdepartment_no , collect_..