You can execute the DROP TABLEGROUP statement to delete a table group. A table group can be deleted only if the table group does not contain a table. This syntax applies to only AUTO mode databases.

Syntax

drop_tablegroup_stmt:
    DROP tablegroup [IF EXISTS] tablegroup_name

Examples

Delete a table group named test_tg.
drop tablegroup test_tg;