DROP USER statement

Use this statement to drop a user.

Syntax
DROP USER user-name 
Parameters
  • user-name   The name of the user you are dropping.

Permissions

Must have DBA authority.

Remarks

None.

Side effects

None.

See also
Standards and compatibility
  • SQL/2003   Vendor extension.

Example

The following example drops the user SQLTester from a database.

DROP USER SQLTester;