manager表:
create table manager(
id int(32) not null auto_increment,
name varchar(32) not null,
sex varchar(32) not null,
phone varchar(32) not null,
password varchar(32) not null,
status varchar(32) not null,
primary key(id)
)ENGINE=INNODB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8
1.ENGINE=INNODB:将数据库的引擎设置为InnoDB(mysql中两种数据库引擎 :MyISAM 、InnoDB)
2.AUTO_INCREMENT=1:自动增长的起始值为1
3.DEFAULT CHARSET=utf8:设置数据库的默认字符集为utf8