MYSQL创建分区时候报错
Posted 玻璃门
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MYSQL创建分区时候报错相关的知识,希望对你有一定的参考价值。
第一种:ERROR 1064 (42000): Partitioning can not be used stand-alone in query near 不能单独创建分区。创建分区时要创建分区表
解决:分区不能单独创建,在建表的时候就要创建一个分区表。
第二种:ERROR 1564 (HY000): This partition function is not allowed 分区不支持此函数。
解决:目前支持的分区函数有:https://blog.csdn.net/cleanfield/article/details/41011765
第三种: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创建分区时候报错的主要内容,如果未能解决你的问题,请参考以下文章
服务器Mysql报错报错#2013 - Lost connection to MySQL server at 'reading initial communication packet