Skip to content

Latest commit

 

History

History
29 lines (16 loc) · 548 Bytes

SQL-Drop-User.md

File metadata and controls

29 lines (16 loc) · 548 Bytes

SQL - DROP USER

Removes a user from the current database. This feature was introduced in version 2.2

Syntax

DROP USER <user>
  • <user> Defines the user you want to remove.

NOTE: This is a wrapper on the class OUser. For more information, see Security.

Examples

  • Remove the user Foo:

    orientdb> DROP USER Foo
    

For more information, see,