• Mysql:设置主键自动增长起始值


    比较郁闷昨天在家使用‘alter table `tablename` AUTO_INCREMENT=10000;’怎么也不起效,但是今天下班时间公司一同事尝试了一下就可以了。搞不明白自己当时是怎么操作的,导致最终不起效。

    实现目标:mysql下将自增主键的值,从10000开始,即实现自增主键的种子为10000。

    方案1)使用alter table `tablename` AUTO_INCREMENT=10000

    创建自增主键之后,使用alter table `tablename` AUTO_INCREMENT=10000实现修改表起始值。

    drop table if exists `trace_test`;
    
    CREATE TABLE `trace_test` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `name` varchar(255) DEFAULT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ;
    
    alter table `trace_test` AUTO_INCREMENT=10000;
    
    insert into `trace_test`(`name`)values('name2');
    select * from `trace_test`;

    Result:

    id     name
    10000  name2

    方案2)创建表时设置AUTO_INCREMENT 10000参数

    drop table if exists `trace_test`;
    
    CREATE TABLE `trace_test` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `name` varchar(255) DEFAULT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB AUTO_INCREMENT 10000 DEFAULT CHARSET=utf8 ;
    
    insert into `trace_test`(`name`)values('name2');
    select * from `trace_test`;

    Result:

    id     name
    10000  name2

    3)如果表已有数据,truncate 之后设置auto_increment=10000,可行。

    drop table if exists `trace_test`;
    
    CREATE TABLE `trace_test` (
      `id` int(11) NOT NULL AUTO_INCREMENT,
      `name` varchar(255) DEFAULT NULL,
      PRIMARY KEY (`id`)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ;
    
    insert into `trace_test`(`name`)values('name1');
    select * from `trace_test`;
    
    truncate table `trace_test`;
    alter table `trace_test` AUTO_INCREMENT=10000;
    
    insert into `trace_test`(`name`)values('name2');
    select * from `trace_test`;

    Result1:

    id     name
    10000  name

    Result2:

    id     name
    10000  name2

    4)如果表已有数据,delete from之后设置auto_increment=10000,可行。

    drop table if exists trace_test;
    
    CREATE TABLE trace_test (
      id int(20) NOT NULL AUTO_INCREMENT,
      name varchar(255) DEFAULT NULL,
      PRIMARY KEY (id)
    ) ENGINE=InnoDB DEFAULT CHARSET=utf8 ;
    
    insert into trace_test(name)values('name1');
    select * from trace_test;
    
    delete from `trace_test`;
    
    alter table trace_test AUTO_INCREMENT=10000;
    
    insert into trace_test(name)values('name2');
    select * from trace_test;

    Result1:

    id     name
    10000  name

    Result2:

    id     name
    10000  name2
  • 相关阅读:
    《A First Course in Mathematical Modeling》-chaper1-差分方程建模
    《数学竞赛辅导》-一元函数积分学-7.24
    《University Calculus》-chape4-导数的应用-极值点的二阶导数检验法
    《A First Course in Probability》-chaper1-组合分析-方程整数解的个数
    《训练指南》——7.24
    《数学竞赛辅导》-一元函数微分学-7.23
    《University Calculus》-chape4-导数的应用-微分中值定理
    《训练指南》——7.21
    #424 Div2 E
    #424 Div2 C
  • 原文地址:https://www.cnblogs.com/yy3b2007com/p/11674844.html
Copyright © 2020-2023  润新知