您可以使用DROP TABLE语法删除指定表。
1DROP TABLE [IF EXISTS] 2tbl_name [, tbl_name] ...;
您可以通过如下语句删除test_tbl表:
1DROP TABLE test_tbl;