19
19
create temporary table t1 (a int not null auto_increment,primary key (a)) engine=MEMORY;
21
21
create temporary table t2 engine=MEMORY select * from t1;
23
23
create table t2 select auto+1 from t1;
25
25
drop table if exists t1,t2;
27
27
Note 1051 Unknown table 't1'