LIST Partitioning Type
Understand LIST partitioning, where rows are assigned to partitions based on whether a column value matches one in a defined list of values.
Syntax
PARTITION BY LIST (partitioning_expression)
(
PARTITION partition_name VALUES IN (value_list),
[ PARTITION partition_name VALUES IN (value_list), ... ]
[ PARTITION partition_name DEFAULT ]
)Use Cases
Example
Last updated
Was this helpful?

