drop database if exists test; create database test; use test; create table examples ( id int not null auto_increment, name varchar(32), primary key (id) ) engine=InnoDB;