MySQL里创建自增的列应该用什么关键字声明

发表于:2007-06-22来源:作者:点击数: 标签:

   


  CREATE TABLE animals ( id mediumint not null auto_increment,
name char(30) not null,
primary key (id));

原文转自:http://www.ltesting.net