create table `message`( `id` tinyint(2) no null auto_increment primary key, `use

请问这句话是什么意思?


create table `message`(
`id` tinyint(2) no null auto_increment primary key,
`user` varchar(25) no null,
`name` varchar(25) no null,
`title` varchar(25) no null,
`content` tinytext no null,
`lastedate` date no null
)ENGINE=InnoDB DEFAULT CHARSET=gbk AUTO_INCREMENT=1;

ENGINE=InnoDB DEFAULT CHARSET=gbk AUTO_INCREMENT=1;这句什么意思?

作者: sab_h   发布时间: 2011-05-07

数据库存储引擎是InnoDB,字符集是gbk,ID主键自增

作者: lxq19851204   发布时间: 2011-05-07