Delete tables
Syntax
DROP TABLE [IF EXISTS] table_name
Example
mysql> drop table primitives_orc;
ERROR 18807 (HY000): DropOperationFailedException:Table 'primitives_orc' was not found.
mysql> drop table if exists primitives_orc;
Query OK, 0 rows affected (0.04 sec)
When a table is deleted, the data file in the OSS instance is not deleted.
mysql> drop table primitives_orc_p;
Query OK, 0 rows affected (0.63 sec)