- 카테고리:
숫자 함수 (지수 및 근)
EXP¶
부동 소수점 값으로 올린 오일러 수 e 를 계산합니다.
구문¶
EXP( <input_expr> )
Arguments¶
input_exprThe value or expression to operate on. The data type must be FLOAT or DECFLOAT.
Returns¶
If the input expression is of type DECFLOAT, the returned type is DECFLOAT. Otherwise, the returned type is FLOAT.
예¶
SELECT EXP(1), EXP(LN(10)); -------------+-------------+ EXP(1) | EXP(LN(10)) | -------------+-------------+ 2.718281828 | 10 | -------------+-------------+