740
765
1 SIMPLE t1 ALL NULL NULL NULL NULL #
742
767
create TEMPORARY table t1 (t int not null default 1, key (t)) engine=MyISAM;
744
772
create TEMPORARY table t1 (id int not null auto_increment, code int not null, name char(20) not null, primary key (id), key (code), unique (name)) engine=MyISAM;