zoukankan      html  css  js  c++  java
  • mysql 创建分区表注意事项,每一个唯一约束必须包含在Mysql分区表的分区键(也包括主键约束)。

    CREATE TABLE tnp (
        id INT NOT NULL AUTO_INCREMENT,
        ref BIGINT NOT NULL,
        name INT,
        PRIMARY KEY pk (id),
        UNIQUE KEY uk (name)
    ); 
    
    mysql> desc tnp
        -> ;
    +-------+--------------+------+-----+---------+----------------+
    | Field | Type         | Null | Key | Default | Extra          |
    +-------+--------------+------+-----+---------+----------------+
    | id    | int(11)      | NO   | PRI | NULL    | auto_increment |
    | ref   | bigint(20)   | NO   |     | NULL    |                |
    | name  | varchar(255) | YES  | UNI | NULL    |                |
    +-------+--------------+------+-----+---------+----------------+
    3 rows in set (0.03 sec)
    
    ID作为分区键;
    alter table tnp partition by range(id)
    ( 
    partition p1012 values less than (100)
    );
    mysql> alter table tnp partition by range(id)
        -> ( 
        -> partition p1012 values less than (100)
        -> );
    ERROR 1503 (HY000): A UNIQUE INDEX must include all columns in the table's partitioning function
    
    一个唯一索引必须表明所有的列在表的分区函数里
    
    mysql> desc tnp;
    +-------+------------+------+-----+---------+----------------+
    | Field | Type       | Null | Key | Default | Extra          |
    +-------+------------+------+-----+---------+----------------+
    | id    | int(11)    | NO   | PRI | NULL    | auto_increment |
    | ref   | bigint(20) | NO   |     | NULL    |                |
    | name  | int(11)    | YES  | UNI | NULL    |                |
    +-------+------------+------+-----+---------+----------------+
    3 rows in set (0.02 sec)
    
    mysql> alter table tnp  PARTITION BY LIST (name) (partition p2 values in (3));
    ERROR 1503 (HY000): A PRIMARY KEY must include all columns in the table's partitioning function
    
    一个主键必须包含所有的列 ,包含分区列
    

  • 相关阅读:
    学习Vue CLI 3.x版本的安装以及创建项目
    Java中同一线程中的对象hashcode一样
    Java中线程范围内共享问题
    Java中的线程池模拟
    java中的Switch
    string、stringbuffer、stringbuild的时间性能对比
    Java中lock上锁 unlock解锁
    java中的三目运算
    Java中的Instanceof
    一个简单的for循环
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13351482.html
Copyright © 2011-2022 走看看