반응형
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
- Github
- gas
- Apache
- numpy
- array
- GIT
- Redshift
- PostgreSQL
- string
- c#
- Kotlin
- Java
- list
- Google Excel
- PANDAS
- Mac
- django
- 파이썬
- Tkinter
- Google Spreadsheet
- dataframe
- SQL
- math
- matplotlib
- Python
- google apps script
- PySpark
- hive
- Excel
Archives
- Today
- Total
달나라 노트
Redshift : exp (자연 상수 e. Euler's number) 본문
728x90
반응형
Redshift에서 exp 함수를 이용하면 자연상수를 지수함수처럼 이용할 수 있습니다.
Syntax
exp(x)
exp(x)는 e^x와 같습니다.
지수함수라고 보시면 됩니다.
select exp(1), --> 2.718281828459045
exp(0), --> 1
exp(1) - 1, --> 1.718281828459045
1 / exp(1) --> 0.367879441171442
;
exp(1) = e^1 = e = 2.718281828459045
exp(0) = e^0 = 1
exp(1) - 1 = e^1 - 1 = e - 1 = 1.718281828459045
1 / exp(1) = 1 / e^1 = 1 / e = 0.367879441171442
728x90
반응형
'SQL > Redshift' 카테고리의 다른 글
Redshift : pg_catalog.pg_namespace, pg_catalog.pg_user (Schema list) (0) | 2022.05.24 |
---|---|
Redshift : fnv_hash (데이터를 FNV hash값으로 변환하기) (0) | 2021.10.27 |
Redshift : split_part (특정 구분자를 기준으로 텍스트 나누기) (0) | 2021.09.30 |
Redshift : strpos (특정 문자열 위치 찾기) (0) | 2021.09.13 |
Redshift : substring (문자열 추출하기) (0) | 2021.09.13 |
Comments