1DROP USER() SQL Commands DROP USER()
23
4
NAME
6DROP USER - remove a database role
78
SYNOPSIS
10DROP USER [ IF EXISTS ] name [, ...]
1112
DESCRIPTION
14DROP USER is now an alias for DROP ROLE [drop_role(7)].
15
COMPATIBILITY
17The DROP USER statement is a PostgreSQL extension. The SQL standard
18leaves the definition of users to the implementation.
19
SEE ALSO
21DROP ROLE [drop_role(7)]
2223
24
25
SQL - Language Statements 2008-06-08 DROP USER()