2
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
5
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
7
drop table if exists t1, t2;
8
drop view if exists v1, v2, v3, not_exist_view;
9
create table t1 (a int);
10
create table t2 (b int);
11
create table t3 (c int);
12
create view v1 as select * from t1;
13
create view v2 as select * from t2;
14
create view v3 as select * from t3;
15
drop view not_exist_view;
16
ERROR 42S02: Unknown table 'not_exist_view'
17
drop view v1, not_exist_view;
18
ERROR 42S02: Unknown table 'not_exist_view'
20
ERROR 42S02: Table 'test.v1' doesn't exist
23
ERROR 42S02: Table 'test.v1' doesn't exist
25
ERROR 42S02: Table 'test.v2' doesn't exist
27
ERROR 42S02: Table 'test.v3' doesn't exist