Example: CREATE … AS Requests That Produce a Table With a Primary Index - Advanced SQL Engine - Teradata Database

SQL Data Definition Language Syntax and Examples

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

Assume that you define the following primary-indexed table.

     CREATE TABLE source (
       column_1 INTEGER
       column_2 INTEGER)
     UNIQUE PRIMARY INDEX (column_1);

The following CREATE TABLE … AS requests both produce primary-indexed tables; however, the second creates the table with a nonunique primary index.

     CREATE TABLE target
     AS source
     WITH NO DATA;
     CREATE TABLE target AS (SELECT column_1, column_2
                             FROM source)
     WITH DATA 
     PRIMARY INDEX (column_1);