MySQL创建分区报错

  • 第一种:ERROR 1064 (42000): Partitioning can not be used stand-alone in query near 不能单独创建分区。创建分区时要创建分区表

解决:分区不能单独创建,在建表的时候就要创建一个分区表。

  • 第二种:ERROR 1564 (HY000): This partition function is not allowed 分区不支持此函数。

  • 第三种:ERROR 1067 (42000): Invalid default value for ‘create_time’ 时间默认值不正确

解决:时间如果用datetime类型 不需要default 默认值。

  • 第四种:ERROR 1654 (HY000): Partition column values of incorrect type 分区列值不正确

解决:因为我用的datetime 我的列值是create_time ,在partition p1 values less than (‘这里的值要跟datetime的值吻合,意思是指不能是0 不能是201805这样的格式,一定要20180506这种格式’)

  • 第五种:ERROR 1503 (HY000): A PRIMARY KEY must include all columns in the table’s partitioning function 主键必须包含表的分区函数中的所有列

解决:把主键id 和create_time拼起来做联合主键索引

以下是完整例子
MySQL创建分区报错_第1张图片
转自:
https://blog.51cto.com/u_15127642/4039547

你可能感兴趣的:(sql,mysql,数据库,database)