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

PI

PI

A math function that returns the constant
pi
(that is,
3.14159265...
) as a FLOAT value.

PI Syntax

PI ( )

PI Example

CREATE TABLE num_table (col1 SMALLINT); INSERT INTO num_table VALUES (2); 1 row affected SELECT PI(), PI()*col1 FROM num_table; 1 row selected 1 2 ---------------------- ---------------------- 3.14159265358979e+00 6.28318530717958e+00

0 COMMENTS

We’d like to hear from you!