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

UPPER

UPPER

A string function that returns the input expression with all lowercase characters converted to their uppercase equivalents.

UPPER Syntax

UPPER (char) UCASE (char)

UPPER Example

Input
Output
'loud'
'LOUD'
CREATE TABLE string_table (col1 VARCHAR(20)); INSERT INTO string_table VALUES (UPPER('loud')); 1 row affected SELECT col1 FROM string_table; 1 row selected col1 -------------------- LOUD

0 COMMENTS

We’d like to hear from you!