일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Google Excel
- Python
- Java
- math
- matplotlib
- c#
- PANDAS
- gas
- array
- numpy
- Kotlin
- django
- PySpark
- Redshift
- string
- list
- SQL
- 파이썬
- Google Spreadsheet
- GIT
- dataframe
- google apps script
- Apache
- Github
- hive
- Mac
- Excel
- PostgreSQL
- Tkinter
- Today
- Total
목록sandbox (4)
달나라 노트
Redshift에서 현재 날짜 또는 현재 시간을 추출할 수 있는 방법을 알아봅시다. select current_date; -- Result 2021-08-25 먼저 current_date입니다. current_date는 현재 날짜를 반환해줍니다. select to_char(current_date, 'yyyymmdd'); -- Result 20210825 current_date로 반환되는 날짜의 data type은 날짜이기때문에 to_char 함수와 같이 사용할 수 있습니다. select sysdate, --> 2021-08-25 19:38:52.382610 getdate() --> 2021-08-25 19:38:52.000000 ; sysdate와 getdate 함수는 현재 날짜와 시간을 반환해줍니다. ..
selectrandom(); - Output 0.10755576053634286 random 함수는 0 이상 1 미만인 실수를 반환합니다. with t_rand_float as ( select random() * 10 as rand_float ) select rf.rand_float , cast(rf.rand_float as int) as rand_int from t_rand_float as rf ; - Output rand_float rand_int 7.850886643864214 8 이를 이용해서 위처럼 0 이상 10 미만인 랜덤한 정수(rand_int)를 반환하게 할 수도 있습니다.
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 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라는 옵션을 추가할 수도 있습니다...