首页 > 解决方案 > MySQL的PARTITION BY LIST中值列表的限制是多少?

问题描述

按列表分区时

CREATE TABLE my_table (...)
PARTITION BY LIST(my_column)
( PARTITION p0 VALUES IN (xxx),
  ...
);

xxx的限制是多少?

标签: mysqlpartitioningpartitiondatabase-partitioning

解决方案


推荐阅读