我的msn messenger:[email protected]
欢迎交流

解决方案 »

  1.   

    ALTER TABLE tablename AUTO_INCREMENT = 1
    后再试试
      

  2.   

    shuixin13(犬犬(心帆)) ,what do the '7F FF FF FF' mean?
      

  3.   

    bombshell(水中鱼) :
    你是怎么插入纪录的?
    在id 字段,我用'null',
    结果插入第二个纪录出现duplicate key,都是2147483647
      

  4.   

    呵呵,
    你的情况我没遇过,
    也不敢多说了,2147483647 是7F FF FF FFINT[(M)] [UNSIGNED] [ZEROFILL] 
    一个正常大小整数。有符号的范围是-2147483648到2147483647,无符号的范围是0到4294967295。
      

  5.   

    能不能将你的create table 语句帖出来呀
      

  6.   

    可能数据库表结构有问题,
    删了重建试试。
    sql语句要是没问题那可能就是MySQL的问题了。
      

  7.   

    ALTER TABLE tablename AUTO_INCREMENT = 1
    后再试试
      

  8.   

    create table author (
    id int(8) not null auto_increment primary key,---------------------
    Now I have not any trouble on inserting after I delete all records.I think the bug occuring when I tried to "insert into author values(,'name'..........)"thank you ,everyone