Example: Grouping Columns in the Column List of a Column-Partitioned Table Rather Than in the Partitioning Expression - Teradata Vantage - Analytics Database

SQL Data Definition Language Syntax and Examples

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

This example defines a column-partitioned table with two column partitions. The first column partition contains 2 columns (c1 and c2 ) and has system-determined COLUMN format with autocompression. The second column partition has 1 column (c3) and has system-determined COLUMN format with no autocompression.

     CREATE MULTISET TABLE cr (
       (c1 INTEGER, 
        c2 INTEGER), 
       (c3 VARCHAR(5000)) NO AUTO COMPRESS)
     NO PRIMARY INDEX
     PARTITION BY COLUMN;