凤凰求蛊
#创建customer表:create table customers(id int not null auto_increment,name char(20) not null,address char(50) null,city char(50) null,age int not null,love char(50) not null default 'No habbit',primary key(id))engine=InnoDB;#SELECT last_insert_id();这个函数可以获得返回最后一个auto_increment值.#默认值:default 'No habbit',#引擎类型,多为engine = InnoDB,如果省略了engine=语句,则使用默认的引擎(MyISAM)。