码迷,mamicode.com
首页 > 数据库 > 详细

MYSQL创建分区时候报错

时间:2019-03-12 12:13:19      阅读:3346      评论:0      收藏:0      [点我收藏+]

标签:invalid   code   must   function   http   inf   one   sed   height   

第一种: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创建分区时候报错

标签:invalid   code   must   function   http   inf   one   sed   height   

原文地址:https://www.cnblogs.com/chenrunxuan/p/10515634.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!