Drops a user.
DROP USER user-name
user-name The name of the user you are dropping.
DBA authority.
Dropping a user also deletes all database objects (such as tables or procedures) that they own, as well as any external logins for the user. The user being removed cannot be connected to the database when the statement is executed.
None.
SQL/2008 Vendor extension.
The following example drops the user SQLTester from a database.
DROP USER SQLTester;