CSQL>create table t1 (f1 int, f2 int);
Statement Executed
CSQL>create table t2 (f1 int,f2 char(10));
Statement Executed
CSQL>create table t3 (f1 int,f2 float);
Statement Executed
CSQL>create table t4 (f1 int, f2 int);
Statement Executed
CSQL>show tables;
=============TableNames===================
t1
t2
t3
t4
=========================================
CSQL>drop table t1,t2,t3,t4;
Statement Executed
CSQL>show tables;
=============TableNames===================
t2
t3
t4
=========================================
CSQL>
Expectation : drop table t1,t2,t3,t4 should drop the tables t1,t2,t3 and t4.