1.比如创建一张表
create table tbl_test(id int(11) auto_increment,name varchar(22) ,primary key (id))Engine=InnoDB;
insert into tbl_test (name) values ('aaaaaaa');
select last_insert_id();
必须进入插入操作后,才能获取插入的id
2 利用shema数据库中的table表
$sql ="select auto_increment from information_schema.`TABLES` where TABLE_NAME='tbl_test'";