InnoDB TableInnoDB table, specify ENGINE = InnoDB option in the CREATE TABLE statement.
CREATE TABLE players (number INT, name CHAR (24), INDEX (a)) ENGINE=InnoDB;
InnoDB tablespace issue a SHOW TABLE STATUS statement.
SHOW TABLE STATUS FROM test LIKE 'players' ;
How does AUTO_INCREMENT with InnoDB work?
© 2007 John Michael Pierobon