You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
866 B
19 lines
866 B
drop table if exists t1,t2;
|
|
create table t1 (a int) engine=myisam;
|
|
drop table t1;
|
|
ERROR HY000: Storage engine can't drop table 'test.t1' because it is missing. Use DROP TABLE IF EXISTS to remove it from data-dictionary.
|
|
select * from t1;
|
|
ERROR HY000: Can't find file: 't1' (errno: 2 - No such file or directory)
|
|
drop table if exists t1;
|
|
Warnings:
|
|
Warning 1017 Can't find file: 't1' (errno: 2 - No such file or directory)
|
|
create table t1 (a int) engine=myisam;
|
|
drop table t1;
|
|
ERROR HY000: Storage engine can't drop table 'test.t1' because it is missing. Use DROP TABLE IF EXISTS to remove it from data-dictionary.
|
|
select * from t1;
|
|
ERROR HY000: Can't find file: 't1' (errno: 2 - No such file or directory)
|
|
drop table if exists t1;
|
|
Warnings:
|
|
Warning 1017 Can't find file: 't1' (errno: 2 - No such file or directory)
|
|
drop table t1;
|
|
ERROR 42S02: Unknown table 'test.t1'
|
|
|