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

Select List Clause

Select List Clause

*
To retrieve all columns from the archived table, enter a single asterisk ( * ) as the sole argument of the
select list
clause.
name
.*
When selecting columns from one or more tables or views, you can select all columns from a particular table by qualifying the special asterisk character with the appropriate table or correlation name specified in the FROM clause.
NULL
A derived column consisting entirely of null values can be specified using the NULL keyword.
value expression
Typically, unless * is used (see above), one or more value expressions, separated by commas, make up the
select list
portion of the statement. These value expressions can be column names, functions, character or numeric constants, or some arithmetic combination of columns, functions, and constants. Expressions may be optionally enclosed by parentheses and nested.
alias
A name for the output of the value expression or the NULL column. If no alias is specified and the value expression is a direct column reference, the name of the output column will be the column name referenced. If no alias is specified and the value expression is not a direct column reference, the name of the output column will be its position number in the output table, counting from left to right.

0 COMMENTS

We’d like to hear from you!