Table of Contents

Search

  1. About the Data Vault SQL Reference
  2. Introduction to SQL Reference for Informatica Data Vault
  3. Date and Time Arithmetic
  4. WHERE Clauses
  5. UNION Operator
  6. Parameterized Query
  7. Functions

Data Vault SQL Reference

Data Vault SQL Reference

EXP

EXP

A math function that returns a FLOAT value of the logarithmic constant
e
(2.718281828) raised to the power of the parameter.

EXP Syntax

EXP (double)

EXP Example

Input
Output
100
2.68811714181614e+43
CREATE TABLE num_table (col1 SMALLINT); INSERT INTO num_table VALUES (100); 1 row affected SELECT EXP(col1) FROM num_table; 1 row selected 1 ---------------------- 2.68811714181614e+43

0 COMMENTS

We’d like to hear from you!