DROP USER

DROP USER removes a role from Materialize.

Syntax

DROP USER IF EXISTS role_name
Field Use
IF EXISTS Do not return an error if the specified role does not exist.
role_name The role you want to drop. For available roles, see mz_roles.

Details

DROP USER is an alias for DROP ROLE.

Back to top ↑