Chinaunix首页 | 论坛 | 博客
  • 博客访问: 736642
  • 博文数量: 178
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 1507
  • 用 户 组: 普通用户
  • 注册时间: 2014-04-27 23:20
文章分类

全部博文(178)

文章存档

2015年(58)

2014年(121)

我的朋友

分类: Mysql/postgreSQL

2015-02-05 14:11:02

mysql> show create table check_t1;
+----------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Table    | Create Table                                                                                                                                                                  |
+----------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| check_t1 | CREATE TABLE `check_t1` (
  `a` int(11) NOT NULL DEFAULT '0',
  `b` varchar(2) NOT NULL DEFAULT '',
  `c` varchar(2) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=utf8 |
+----------+-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.00 sec)


mysql> alter table check_t1 add primary key (a);                         
Query OK, 1 row affected (0.85 sec)
Records: 1  Duplicates: 0  Warnings: 0


mysql> alter table check_t1 auto_increment=1;
Query OK, 0 rows affected (1.12 sec)
Records: 0  Duplicates: 0  Warnings: 0
阅读(1217) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~