Chinaunix首页 | 论坛 | 博客
  • 博客访问: 108869
  • 博文数量: 60
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 280
  • 用 户 组: 普通用户
  • 注册时间: 2013-09-09 12:19
文章分类

全部博文(60)

文章存档

2015年(3)

2014年(41)

2013年(16)

我的朋友

分类: Mysql/postgreSQL

2013-12-04 21:27:10

原文地址:mySql 修改字段自增 作者:shuang_lin_lei

Alter table tb change id id int(10) not null auto_increment=1;//有问题

mysql> alter table newcar change id id int(11) not null auto-increment;//有问题

mysql> alter table newcar change id id int(11) not null AUTO_INCREMENT=1;//有问题

修改:alter table newcar change id id int(11) not null AUTO_INCREMENT;

 

删除

Alter table tb change id id int(10);//删除自增长

Alter table tb drop primary key;//删除主建

阅读(773) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~