DROP TABLE

Syntax

DROP TABLE table_name [IF bool_expr]

Description

Drops named table (requires disabling the table first).

Example

        HConnection conn = HConnectionManager.newConnection();
        conn.execute("DROP TABLE foo");

        // Or using the API
        conn.dropTable("foo");