DROP GROUP

Applies to: check marked yes Databricks SQL check marked yes Databricks Runtime

Drops a workspace-local group. An exception is thrown if the group does not exist in the system.

Syntax

DROP GROUP group_principal

Parameters

Examples

-- Create `aliens` Group
> CREATE GROUP aliens WITH GROUP tv_aliens;

-- Drop `aliens` group
> DROP GROUP aliens;