Example: Adding Multiple Attributes to a Structured UDT - Analytics Database - Teradata Vantage

SQL Data Definition Language Syntax and Examples

Deployment
VantageCloud
VantageCore
Edition
Enterprise
IntelliFlex
VMware
Product
Analytics Database
Teradata Vantage
Release Number
17.20
Published
June 2022
ft:locale
en-US
ft:lastEdition
2025-03-30
dita:mapPath
jco1628111346878.ditamap
dita:ditavalPath
qkf1628213546010.ditaval
dita:id
mdr1472255012272
lifecycle
latest
Product Category
Teradata Vantage™

The following example adds three attributes named country, continent, and zone to the structured UDT named address:

ALTER TYPE address      /* Add 3 attributes to structured type */
 ADD ATTRIBUTE country   VARCHAR(15), 
               continent VARCHAR(20), 
               zone      INTEGER;