Examples | Data Type Phrases | Teradata Vantage - Example: Data Type Attribute Carried Over to a View - Advanced SQL Engine - Teradata Database

SQL Data Types and Literals

Product
Advanced SQL Engine
Teradata Database
Release Number
17.05
17.00
Published
June 2020
Language
English (United States)
Last Update
2021-01-22
dita:mapPath
zsn1556242031050.ditamap
dita:ditavalPath
lze1555437562152.ditaval
dita:id
B035-1143
lifecycle
previous
Product Category
Teradata Vantage™

In this example, the title “This is the title” defined in table tb is automatically carried over to the view since there were no changes to column b in the view.

CREATE TABLE tb
(    a INTEGER,
     b INTEGER TITLE 'This is the title');

CREATE VIEW vtb AS
(SELECT a, b
 FROM tb);

SELECT TITLE (vtb.b);

The SELECT statement produces the following output:

Title(This is the title)
---------------------------
This is the title