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

CEILING

CEILING

A math function that returns the smallest integer that is greater than or equal to the input expression.

CEILING Syntax

CEILING (double)

CEILING Example

Input
Output
9.3
10
CREATE TABLE num_table (col1 DEC(5,2)); INSERT INTO num_table VALUES (9.3); 1 row affected SELECT CEILING(col1) FROM num_table; 1 row selected 1 ---------------------- 1.00000000000000e+01

0 COMMENTS

We’d like to hear from you!